sentry-cli 2.50.2__tar.gz → 2.57.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-2.50.2 → sentry_cli-2.57.0}/Cargo.lock +971 -751
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/Cargo.toml +12 -9
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/PKG-INFO +1 -1
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/apple-catalog-parsing/build.rs +6 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/apple-catalog-parsing/native/swift/AssetCatalogParser/Sources/AssetCatalogParser/AssetCatalogReader.swift +64 -27
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/apple-catalog-parsing/native/swift/AssetCatalogParser/Tests/AssetCatalogParserTests/AssetCatalogParserTests.swift +1 -1
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/apple-catalog-parsing/src/asset_catalog.rs +10 -5
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/sentry_cli.egg-info/PKG-INFO +1 -1
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/sentry_cli.egg-info/SOURCES.txt +17 -11
- sentry_cli-2.57.0/src/api/data_types/chunking/build.rs +40 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/api/data_types/chunking/mod.rs +2 -3
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/api/data_types/chunking/upload/capability.rs +4 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/api/errors/mod.rs +18 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/api/mod.rs +212 -72
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/bash_hook.rs +3 -1
- {sentry_cli-2.50.2/src/commands/mobile_app → sentry_cli-2.57.0/src/commands/build}/mod.rs +4 -6
- sentry_cli-2.57.0/src/commands/build/upload.rs +715 -0
- sentry_cli-2.57.0/src/commands/dart_symbol_map/mod.rs +46 -0
- sentry_cli-2.57.0/src/commands/dart_symbol_map/upload.rs +175 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/debug_files/bundle_jvm.rs +1 -1
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/debug_files/find.rs +21 -19
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/debug_files/upload.rs +2 -6
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/derive_parser.rs +4 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/files/upload.rs +2 -2
- sentry_cli-2.57.0/src/commands/logs/list.rs +480 -0
- sentry_cli-2.57.0/src/commands/logs/mod.rs +51 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/mod.rs +17 -11
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/monitors/list.rs +1 -1
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/organizations/list.rs +1 -1
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/react_native/appcenter.rs +2 -2
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/react_native/gradle.rs +2 -2
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/react_native/xcode.rs +6 -4
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/releases/finalize.rs +1 -1
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/releases/new.rs +1 -1
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/releases/set_commits.rs +47 -33
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/send_envelope.rs +1 -1
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/send_event.rs +11 -3
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/send_metric/mod.rs +4 -6
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/sourcemaps/explain.rs +58 -55
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/sourcemaps/upload.rs +2 -2
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/upload_proguard.rs +30 -7
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/config.rs +32 -19
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/constants.rs +3 -3
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/appcenter.rs +2 -2
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/args.rs +14 -11
- {sentry_cli-2.50.2/src/utils/mobile_app → sentry_cli-2.57.0/src/utils/build}/apple.rs +5 -3
- sentry_cli-2.57.0/src/utils/build/mod.rs +11 -0
- sentry_cli-2.57.0/src/utils/build/normalize.rs +112 -0
- {sentry_cli-2.50.2/src/utils/mobile_app → sentry_cli-2.57.0/src/utils/build}/validation.rs +45 -7
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/chunks/mod.rs +1 -1
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/chunks/types.rs +1 -1
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/dif.rs +15 -12
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/dif_upload/mod.rs +47 -30
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/event.rs +8 -3
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/file_search.rs +2 -2
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/file_upload.rs +61 -26
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/fs.rs +3 -8
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/http.rs +41 -35
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/mod.rs +2 -1
- sentry_cli-2.57.0/src/utils/non_empty.rs +142 -0
- sentry_cli-2.57.0/src/utils/progress.rs +158 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/proguard/mapping.rs +1 -1
- sentry_cli-2.57.0/src/utils/retry.rs +25 -0
- sentry_cli-2.57.0/src/utils/snapshots/sentry_cli__utils__vcs__tests__get_commits_from_git.snap +20 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/sourcemaps/inject.rs +65 -18
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/sourcemaps.rs +231 -70
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/update.rs +1 -1
- sentry_cli-2.57.0/src/utils/vcs.rs +1779 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/xcode.rs +22 -17
- sentry_cli-2.50.2/src/api/data_types/chunking/mobile_app.rs +0 -23
- sentry_cli-2.50.2/src/commands/mobile_app/upload.rs +0 -477
- sentry_cli-2.50.2/src/utils/mobile_app/mod.rs +0 -11
- sentry_cli-2.50.2/src/utils/progress.rs +0 -107
- sentry_cli-2.50.2/src/utils/retry.rs +0 -35
- sentry_cli-2.50.2/src/utils/snapshots/sentry_cli__utils__vcs__get_commits_from_git.snap +0 -20
- sentry_cli-2.50.2/src/utils/vcs.rs +0 -1174
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/LICENSE +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/MANIFEST.in +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/README.md +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/apple-catalog-parsing/Cargo.toml +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/apple-catalog-parsing/native/swift/AssetCatalogParser/Package.swift +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/apple-catalog-parsing/native/swift/AssetCatalogParser/Sources/ObjcSupport/include/safeValueForKey.h +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/apple-catalog-parsing/native/swift/AssetCatalogParser/Sources/ObjcSupport/safeValueForKey.m +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/apple-catalog-parsing/native/swift/AssetCatalogParser/Tests/AssetCatalogParserTests/Resources/test.xcarchive/Info.plist +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/apple-catalog-parsing/native/swift/AssetCatalogParser/Tests/AssetCatalogParserTests/Resources/test.xcarchive/Products/Applications/DemoApp.app/Assets.car +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/apple-catalog-parsing/src/lib.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/build.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/pyproject.toml +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/sentry_cli.egg-info/dependency_links.txt +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/sentry_cli.egg-info/top_level.txt +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/setup.cfg +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/setup.py +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/api/connection_manager.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/api/data_types/chunking/artifact.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/api/data_types/chunking/compression.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/api/data_types/chunking/dif.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/api/data_types/chunking/file_state.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/api/data_types/chunking/hash_algorithm.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/api/data_types/chunking/upload/mod.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/api/data_types/chunking/upload/options.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/api/data_types/deploy.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/api/data_types/mod.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/api/encoding.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/api/envelopes_api.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/api/errors/api_error.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/api/errors/sentry_error.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/api/pagination.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/bashsupport.sh +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/debug_files/bundle_sources.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/debug_files/check.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/debug_files/mod.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/debug_files/print_sources.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/deploys/list.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/deploys/mod.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/deploys/new.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/events/list.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/events/mod.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/files/delete.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/files/list.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/files/mod.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/info.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/issues/list.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/issues/mod.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/issues/mute.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/issues/resolve.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/issues/unresolve.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/login.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/monitors/mod.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/monitors/run.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/organizations/mod.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/projects/list.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/projects/mod.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/react_native/mod.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/releases/archive.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/releases/delete.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/releases/info.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/releases/list.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/releases/mod.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/releases/propose_version.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/releases/restore.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/repos/list.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/repos/mod.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/send_metric/common_args.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/send_metric/distribution.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/send_metric/gauge.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/send_metric/increment.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/send_metric/set.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/sourcemaps/inject.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/sourcemaps/mod.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/sourcemaps/resolve.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/uninstall.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/update.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/upload_dif.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/commands/upload_dsym.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/main.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/android.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/auth_token/auth_token_impl.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/auth_token/error.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/auth_token/mod.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/auth_token/org_auth_token.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/auth_token/redacting.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/auth_token/test.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/auth_token/user_auth_token.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/chunks/options.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/chunks/upload.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/cordova.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/dif_upload/error.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/formatting.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/logging.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/metrics.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/proguard/mod.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/proguard/upload.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/releases.rs +0 -0
- /sentry_cli-2.50.2/src/utils/snapshots/sentry_cli__utils__vcs__generate_patch_default_twenty.snap → /sentry_cli-2.57.0/src/utils/snapshots/sentry_cli__utils__vcs__tests__generate_patch_default_twenty.snap +0 -0
- /sentry_cli-2.50.2/src/utils/snapshots/sentry_cli__utils__vcs__generate_patch_ignore_missing.snap → /sentry_cli-2.57.0/src/utils/snapshots/sentry_cli__utils__vcs__tests__generate_patch_ignore_missing.snap +0 -0
- /sentry_cli-2.50.2/src/utils/snapshots/sentry_cli__utils__vcs__generate_patch_set_base.snap → /sentry_cli-2.57.0/src/utils/snapshots/sentry_cli__utils__vcs__tests__generate_patch_set_base.snap +0 -0
- /sentry_cli-2.50.2/src/utils/snapshots/sentry_cli__utils__vcs__generate_patch_set_previous_commit.snap → /sentry_cli-2.57.0/src/utils/snapshots/sentry_cli__utils__vcs__tests__generate_patch_set_previous_commit.snap +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/system.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/ui.rs +0 -0
- {sentry_cli-2.50.2 → sentry_cli-2.57.0}/src/utils/value_parsers.rs +0 -0
|
@@ -4,18 +4,18 @@ version = 4
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "addr2line"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.25.1"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
|
|
10
10
|
dependencies = [
|
|
11
|
-
"gimli
|
|
11
|
+
"gimli",
|
|
12
12
|
]
|
|
13
13
|
|
|
14
14
|
[[package]]
|
|
15
|
-
name = "
|
|
16
|
-
version = "
|
|
15
|
+
name = "adler2"
|
|
16
|
+
version = "2.0.1"
|
|
17
17
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
-
checksum = "
|
|
18
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
19
19
|
|
|
20
20
|
[[package]]
|
|
21
21
|
name = "aes"
|
|
@@ -34,16 +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.16",
|
|
38
38
|
"once_cell",
|
|
39
39
|
"version_check",
|
|
40
40
|
]
|
|
41
41
|
|
|
42
42
|
[[package]]
|
|
43
43
|
name = "ahash"
|
|
44
|
-
version = "0.8.
|
|
44
|
+
version = "0.8.12"
|
|
45
45
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
46
|
-
checksum = "
|
|
46
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
47
47
|
dependencies = [
|
|
48
48
|
"cfg-if",
|
|
49
49
|
"once_cell",
|
|
@@ -61,10 +61,25 @@ dependencies = [
|
|
|
61
61
|
]
|
|
62
62
|
|
|
63
63
|
[[package]]
|
|
64
|
-
name = "
|
|
65
|
-
version = "0.
|
|
64
|
+
name = "alloc-no-stdlib"
|
|
65
|
+
version = "2.0.4"
|
|
66
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
67
|
+
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
|
68
|
+
|
|
69
|
+
[[package]]
|
|
70
|
+
name = "alloc-stdlib"
|
|
71
|
+
version = "0.2.2"
|
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
73
|
+
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
|
|
74
|
+
dependencies = [
|
|
75
|
+
"alloc-no-stdlib",
|
|
76
|
+
]
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "allocator-api2"
|
|
80
|
+
version = "0.2.21"
|
|
66
81
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
67
|
-
checksum = "
|
|
82
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
68
83
|
|
|
69
84
|
[[package]]
|
|
70
85
|
name = "android_system_properties"
|
|
@@ -77,9 +92,9 @@ dependencies = [
|
|
|
77
92
|
|
|
78
93
|
[[package]]
|
|
79
94
|
name = "anstream"
|
|
80
|
-
version = "0.6.
|
|
95
|
+
version = "0.6.20"
|
|
81
96
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
-
checksum = "
|
|
97
|
+
checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
|
|
83
98
|
dependencies = [
|
|
84
99
|
"anstyle",
|
|
85
100
|
"anstyle-parse",
|
|
@@ -92,43 +107,44 @@ dependencies = [
|
|
|
92
107
|
|
|
93
108
|
[[package]]
|
|
94
109
|
name = "anstyle"
|
|
95
|
-
version = "1.0.
|
|
110
|
+
version = "1.0.13"
|
|
96
111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
-
checksum = "
|
|
112
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
98
113
|
|
|
99
114
|
[[package]]
|
|
100
115
|
name = "anstyle-parse"
|
|
101
|
-
version = "0.2.
|
|
116
|
+
version = "0.2.7"
|
|
102
117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
-
checksum = "
|
|
118
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
104
119
|
dependencies = [
|
|
105
120
|
"utf8parse",
|
|
106
121
|
]
|
|
107
122
|
|
|
108
123
|
[[package]]
|
|
109
124
|
name = "anstyle-query"
|
|
110
|
-
version = "1.1.
|
|
125
|
+
version = "1.1.4"
|
|
111
126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
-
checksum = "
|
|
127
|
+
checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
|
|
113
128
|
dependencies = [
|
|
114
|
-
"windows-sys 0.
|
|
129
|
+
"windows-sys 0.60.2",
|
|
115
130
|
]
|
|
116
131
|
|
|
117
132
|
[[package]]
|
|
118
133
|
name = "anstyle-wincon"
|
|
119
|
-
version = "3.0.
|
|
134
|
+
version = "3.0.10"
|
|
120
135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
-
checksum = "
|
|
136
|
+
checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
|
|
122
137
|
dependencies = [
|
|
123
138
|
"anstyle",
|
|
124
|
-
"
|
|
139
|
+
"once_cell_polyfill",
|
|
140
|
+
"windows-sys 0.60.2",
|
|
125
141
|
]
|
|
126
142
|
|
|
127
143
|
[[package]]
|
|
128
144
|
name = "anyhow"
|
|
129
|
-
version = "1.0.
|
|
145
|
+
version = "1.0.100"
|
|
130
146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
-
checksum = "
|
|
147
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
132
148
|
dependencies = [
|
|
133
149
|
"backtrace",
|
|
134
150
|
]
|
|
@@ -148,23 +164,23 @@ dependencies = [
|
|
|
148
164
|
name = "apple-catalog-parsing"
|
|
149
165
|
version = "0.0.0"
|
|
150
166
|
dependencies = [
|
|
151
|
-
"thiserror 2.0.
|
|
167
|
+
"thiserror 2.0.17",
|
|
152
168
|
]
|
|
153
169
|
|
|
154
170
|
[[package]]
|
|
155
171
|
name = "arbitrary"
|
|
156
|
-
version = "1.4.
|
|
172
|
+
version = "1.4.2"
|
|
157
173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
-
checksum = "
|
|
174
|
+
checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
|
|
159
175
|
dependencies = [
|
|
160
176
|
"derive_arbitrary",
|
|
161
177
|
]
|
|
162
178
|
|
|
163
179
|
[[package]]
|
|
164
180
|
name = "arrayvec"
|
|
165
|
-
version = "0.7.
|
|
181
|
+
version = "0.7.6"
|
|
166
182
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
-
checksum = "
|
|
183
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
168
184
|
|
|
169
185
|
[[package]]
|
|
170
186
|
name = "assert-json-diff"
|
|
@@ -178,9 +194,9 @@ dependencies = [
|
|
|
178
194
|
|
|
179
195
|
[[package]]
|
|
180
196
|
name = "assert_cmd"
|
|
181
|
-
version = "2.0.
|
|
197
|
+
version = "2.0.17"
|
|
182
198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
-
checksum = "
|
|
199
|
+
checksum = "2bd389a4b2970a01282ee455294913c0a43724daedcd1a24c3eb0ec1c1320b66"
|
|
184
200
|
dependencies = [
|
|
185
201
|
"anstyle",
|
|
186
202
|
"bstr",
|
|
@@ -200,34 +216,34 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
|
200
216
|
|
|
201
217
|
[[package]]
|
|
202
218
|
name = "autocfg"
|
|
203
|
-
version = "1.
|
|
219
|
+
version = "1.5.0"
|
|
204
220
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
-
checksum = "
|
|
221
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
206
222
|
|
|
207
223
|
[[package]]
|
|
208
|
-
name = "
|
|
209
|
-
version = "
|
|
224
|
+
name = "backon"
|
|
225
|
+
version = "1.5.2"
|
|
210
226
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
-
checksum = "
|
|
227
|
+
checksum = "592277618714fbcecda9a02ba7a8781f319d26532a88553bbacc77ba5d2b3a8d"
|
|
212
228
|
dependencies = [
|
|
213
|
-
"
|
|
214
|
-
"
|
|
215
|
-
"
|
|
229
|
+
"fastrand",
|
|
230
|
+
"gloo-timers",
|
|
231
|
+
"tokio",
|
|
216
232
|
]
|
|
217
233
|
|
|
218
234
|
[[package]]
|
|
219
235
|
name = "backtrace"
|
|
220
|
-
version = "0.3.
|
|
236
|
+
version = "0.3.76"
|
|
221
237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
-
checksum = "
|
|
238
|
+
checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
|
|
223
239
|
dependencies = [
|
|
224
240
|
"addr2line",
|
|
225
|
-
"cc",
|
|
226
241
|
"cfg-if",
|
|
227
242
|
"libc",
|
|
228
243
|
"miniz_oxide",
|
|
229
244
|
"object",
|
|
230
245
|
"rustc-demangle",
|
|
246
|
+
"windows-link 0.2.0",
|
|
231
247
|
]
|
|
232
248
|
|
|
233
249
|
[[package]]
|
|
@@ -266,9 +282,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
266
282
|
|
|
267
283
|
[[package]]
|
|
268
284
|
name = "bitflags"
|
|
269
|
-
version = "2.
|
|
285
|
+
version = "2.9.4"
|
|
270
286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
-
checksum = "
|
|
287
|
+
checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
|
|
272
288
|
|
|
273
289
|
[[package]]
|
|
274
290
|
name = "bitvec"
|
|
@@ -292,23 +308,24 @@ dependencies = [
|
|
|
292
308
|
]
|
|
293
309
|
|
|
294
310
|
[[package]]
|
|
295
|
-
name = "brotli
|
|
296
|
-
version = "0.
|
|
311
|
+
name = "brotli"
|
|
312
|
+
version = "8.0.2"
|
|
297
313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
-
checksum = "
|
|
314
|
+
checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
|
|
299
315
|
dependencies = [
|
|
300
|
-
"
|
|
301
|
-
"
|
|
316
|
+
"alloc-no-stdlib",
|
|
317
|
+
"alloc-stdlib",
|
|
318
|
+
"brotli-decompressor",
|
|
302
319
|
]
|
|
303
320
|
|
|
304
321
|
[[package]]
|
|
305
|
-
name = "
|
|
306
|
-
version = "0.
|
|
322
|
+
name = "brotli-decompressor"
|
|
323
|
+
version = "5.0.0"
|
|
307
324
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
-
checksum = "
|
|
325
|
+
checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
|
|
309
326
|
dependencies = [
|
|
310
|
-
"
|
|
311
|
-
"
|
|
327
|
+
"alloc-no-stdlib",
|
|
328
|
+
"alloc-stdlib",
|
|
312
329
|
]
|
|
313
330
|
|
|
314
331
|
[[package]]
|
|
@@ -322,9 +339,9 @@ dependencies = [
|
|
|
322
339
|
|
|
323
340
|
[[package]]
|
|
324
341
|
name = "bstr"
|
|
325
|
-
version = "1.
|
|
342
|
+
version = "1.12.0"
|
|
326
343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
-
checksum = "
|
|
344
|
+
checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
|
|
328
345
|
dependencies = [
|
|
329
346
|
"memchr",
|
|
330
347
|
"regex-automata",
|
|
@@ -333,15 +350,15 @@ dependencies = [
|
|
|
333
350
|
|
|
334
351
|
[[package]]
|
|
335
352
|
name = "bumpalo"
|
|
336
|
-
version = "3.
|
|
353
|
+
version = "3.19.0"
|
|
337
354
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
-
checksum = "
|
|
355
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
339
356
|
|
|
340
357
|
[[package]]
|
|
341
358
|
name = "bytecount"
|
|
342
|
-
version = "0.6.
|
|
359
|
+
version = "0.6.9"
|
|
343
360
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
-
checksum = "
|
|
361
|
+
checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
|
|
345
362
|
|
|
346
363
|
[[package]]
|
|
347
364
|
name = "byteorder"
|
|
@@ -351,9 +368,9 @@ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
351
368
|
|
|
352
369
|
[[package]]
|
|
353
370
|
name = "bytes"
|
|
354
|
-
version = "1.
|
|
371
|
+
version = "1.10.1"
|
|
355
372
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
-
checksum = "
|
|
373
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
357
374
|
|
|
358
375
|
[[package]]
|
|
359
376
|
name = "bzip2"
|
|
@@ -376,34 +393,34 @@ dependencies = [
|
|
|
376
393
|
|
|
377
394
|
[[package]]
|
|
378
395
|
name = "cc"
|
|
379
|
-
version = "1.
|
|
396
|
+
version = "1.2.39"
|
|
380
397
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
-
checksum = "
|
|
398
|
+
checksum = "e1354349954c6fc9cb0deab020f27f783cf0b604e8bb754dc4658ecf0d29c35f"
|
|
382
399
|
dependencies = [
|
|
400
|
+
"find-msvc-tools",
|
|
383
401
|
"jobserver",
|
|
384
402
|
"libc",
|
|
385
|
-
"
|
|
403
|
+
"shlex",
|
|
386
404
|
]
|
|
387
405
|
|
|
388
406
|
[[package]]
|
|
389
407
|
name = "cfg-if"
|
|
390
|
-
version = "1.0.
|
|
408
|
+
version = "1.0.3"
|
|
391
409
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
-
checksum = "
|
|
410
|
+
checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
|
|
393
411
|
|
|
394
412
|
[[package]]
|
|
395
413
|
name = "chrono"
|
|
396
|
-
version = "0.4.
|
|
414
|
+
version = "0.4.42"
|
|
397
415
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
-
checksum = "
|
|
416
|
+
checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
|
|
399
417
|
dependencies = [
|
|
400
|
-
"android-tzdata",
|
|
401
418
|
"iana-time-zone",
|
|
402
419
|
"js-sys",
|
|
403
420
|
"num-traits",
|
|
404
421
|
"serde",
|
|
405
422
|
"wasm-bindgen",
|
|
406
|
-
"windows-
|
|
423
|
+
"windows-link 0.2.0",
|
|
407
424
|
]
|
|
408
425
|
|
|
409
426
|
[[package]]
|
|
@@ -440,9 +457,9 @@ dependencies = [
|
|
|
440
457
|
|
|
441
458
|
[[package]]
|
|
442
459
|
name = "clap"
|
|
443
|
-
version = "4.5.
|
|
460
|
+
version = "4.5.48"
|
|
444
461
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
-
checksum = "
|
|
462
|
+
checksum = "e2134bb3ea021b78629caa971416385309e0131b351b25e01dc16fb54e1b5fae"
|
|
446
463
|
dependencies = [
|
|
447
464
|
"clap_builder",
|
|
448
465
|
"clap_derive",
|
|
@@ -450,9 +467,9 @@ dependencies = [
|
|
|
450
467
|
|
|
451
468
|
[[package]]
|
|
452
469
|
name = "clap_builder"
|
|
453
|
-
version = "4.5.
|
|
470
|
+
version = "4.5.48"
|
|
454
471
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
-
checksum = "
|
|
472
|
+
checksum = "c2ba64afa3c0a6df7fa517765e31314e983f51dda798ffba27b988194fb65dc9"
|
|
456
473
|
dependencies = [
|
|
457
474
|
"anstyle",
|
|
458
475
|
"clap_lex",
|
|
@@ -462,18 +479,18 @@ dependencies = [
|
|
|
462
479
|
|
|
463
480
|
[[package]]
|
|
464
481
|
name = "clap_complete"
|
|
465
|
-
version = "4.5.
|
|
482
|
+
version = "4.5.58"
|
|
466
483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
-
checksum = "
|
|
484
|
+
checksum = "75bf0b32ad2e152de789bb635ea4d3078f6b838ad7974143e99b99f45a04af4a"
|
|
468
485
|
dependencies = [
|
|
469
486
|
"clap",
|
|
470
487
|
]
|
|
471
488
|
|
|
472
489
|
[[package]]
|
|
473
490
|
name = "clap_derive"
|
|
474
|
-
version = "4.5.
|
|
491
|
+
version = "4.5.47"
|
|
475
492
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
-
checksum = "
|
|
493
|
+
checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c"
|
|
477
494
|
dependencies = [
|
|
478
495
|
"heck",
|
|
479
496
|
"proc-macro2",
|
|
@@ -483,37 +500,49 @@ dependencies = [
|
|
|
483
500
|
|
|
484
501
|
[[package]]
|
|
485
502
|
name = "clap_lex"
|
|
486
|
-
version = "0.7.
|
|
503
|
+
version = "0.7.5"
|
|
487
504
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
-
checksum = "
|
|
505
|
+
checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
|
|
489
506
|
|
|
490
507
|
[[package]]
|
|
491
508
|
name = "colorchoice"
|
|
492
|
-
version = "1.0.
|
|
509
|
+
version = "1.0.4"
|
|
493
510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
-
checksum = "
|
|
511
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
495
512
|
|
|
496
513
|
[[package]]
|
|
497
514
|
name = "colored"
|
|
498
|
-
version = "
|
|
515
|
+
version = "3.0.0"
|
|
499
516
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
-
checksum = "
|
|
517
|
+
checksum = "fde0e0ec90c9dfb3b4b1a0891a7dcd0e2bffde2f7efed5fe7c9bb00e5bfb915e"
|
|
501
518
|
dependencies = [
|
|
502
|
-
"
|
|
503
|
-
"windows-sys 0.48.0",
|
|
519
|
+
"windows-sys 0.59.0",
|
|
504
520
|
]
|
|
505
521
|
|
|
506
522
|
[[package]]
|
|
507
523
|
name = "console"
|
|
508
|
-
version = "0.15.
|
|
524
|
+
version = "0.15.11"
|
|
509
525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
-
checksum = "
|
|
526
|
+
checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
|
|
511
527
|
dependencies = [
|
|
512
|
-
"encode_unicode
|
|
513
|
-
"lazy_static",
|
|
528
|
+
"encode_unicode",
|
|
514
529
|
"libc",
|
|
515
|
-
"
|
|
516
|
-
"
|
|
530
|
+
"once_cell",
|
|
531
|
+
"unicode-width 0.2.1",
|
|
532
|
+
"windows-sys 0.59.0",
|
|
533
|
+
]
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "console"
|
|
537
|
+
version = "0.16.1"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "b430743a6eb14e9764d4260d4c0d8123087d504eeb9c48f2b2a5e810dd369df4"
|
|
540
|
+
dependencies = [
|
|
541
|
+
"encode_unicode",
|
|
542
|
+
"libc",
|
|
543
|
+
"once_cell",
|
|
544
|
+
"unicode-width 0.2.1",
|
|
545
|
+
"windows-sys 0.61.1",
|
|
517
546
|
]
|
|
518
547
|
|
|
519
548
|
[[package]]
|
|
@@ -533,24 +562,24 @@ dependencies = [
|
|
|
533
562
|
|
|
534
563
|
[[package]]
|
|
535
564
|
name = "core-foundation-sys"
|
|
536
|
-
version = "0.8.
|
|
565
|
+
version = "0.8.7"
|
|
537
566
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
-
checksum = "
|
|
567
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
539
568
|
|
|
540
569
|
[[package]]
|
|
541
570
|
name = "cpufeatures"
|
|
542
|
-
version = "0.2.
|
|
571
|
+
version = "0.2.17"
|
|
543
572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
-
checksum = "
|
|
573
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
545
574
|
dependencies = [
|
|
546
575
|
"libc",
|
|
547
576
|
]
|
|
548
577
|
|
|
549
578
|
[[package]]
|
|
550
579
|
name = "crc"
|
|
551
|
-
version = "3.
|
|
580
|
+
version = "3.3.0"
|
|
552
581
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
-
checksum = "
|
|
582
|
+
checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
|
|
554
583
|
dependencies = [
|
|
555
584
|
"crc-catalog",
|
|
556
585
|
]
|
|
@@ -563,18 +592,18 @@ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
|
|
|
563
592
|
|
|
564
593
|
[[package]]
|
|
565
594
|
name = "crc32fast"
|
|
566
|
-
version = "1.
|
|
595
|
+
version = "1.5.0"
|
|
567
596
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
568
|
-
checksum = "
|
|
597
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
569
598
|
dependencies = [
|
|
570
599
|
"cfg-if",
|
|
571
600
|
]
|
|
572
601
|
|
|
573
602
|
[[package]]
|
|
574
603
|
name = "crossbeam-deque"
|
|
575
|
-
version = "0.8.
|
|
604
|
+
version = "0.8.6"
|
|
576
605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
|
-
checksum = "
|
|
606
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
578
607
|
dependencies = [
|
|
579
608
|
"crossbeam-epoch",
|
|
580
609
|
"crossbeam-utils",
|
|
@@ -619,18 +648,18 @@ dependencies = [
|
|
|
619
648
|
|
|
620
649
|
[[package]]
|
|
621
650
|
name = "csv-core"
|
|
622
|
-
version = "0.1.
|
|
651
|
+
version = "0.1.12"
|
|
623
652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
|
-
checksum = "
|
|
653
|
+
checksum = "7d02f3b0da4c6504f86e9cd789d8dbafab48c2321be74e9987593de5a894d93d"
|
|
625
654
|
dependencies = [
|
|
626
655
|
"memchr",
|
|
627
656
|
]
|
|
628
657
|
|
|
629
658
|
[[package]]
|
|
630
659
|
name = "curl"
|
|
631
|
-
version = "0.4.
|
|
660
|
+
version = "0.4.49"
|
|
632
661
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
-
checksum = "
|
|
662
|
+
checksum = "79fc3b6dd0b87ba36e565715bf9a2ced221311db47bd18011676f24a6066edbc"
|
|
634
663
|
dependencies = [
|
|
635
664
|
"curl-sys",
|
|
636
665
|
"libc",
|
|
@@ -638,14 +667,14 @@ dependencies = [
|
|
|
638
667
|
"openssl-sys",
|
|
639
668
|
"schannel",
|
|
640
669
|
"socket2",
|
|
641
|
-
"windows-sys 0.
|
|
670
|
+
"windows-sys 0.59.0",
|
|
642
671
|
]
|
|
643
672
|
|
|
644
673
|
[[package]]
|
|
645
674
|
name = "curl-sys"
|
|
646
|
-
version = "0.4.
|
|
675
|
+
version = "0.4.83+curl-8.15.0"
|
|
647
676
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
-
checksum = "
|
|
677
|
+
checksum = "5830daf304027db10c82632a464879d46a3f7c4ba17a31592657ad16c719b483"
|
|
649
678
|
dependencies = [
|
|
650
679
|
"cc",
|
|
651
680
|
"libc",
|
|
@@ -653,14 +682,14 @@ dependencies = [
|
|
|
653
682
|
"openssl-sys",
|
|
654
683
|
"pkg-config",
|
|
655
684
|
"vcpkg",
|
|
656
|
-
"windows-sys 0.
|
|
685
|
+
"windows-sys 0.59.0",
|
|
657
686
|
]
|
|
658
687
|
|
|
659
688
|
[[package]]
|
|
660
689
|
name = "data-encoding"
|
|
661
|
-
version = "2.
|
|
690
|
+
version = "2.9.0"
|
|
662
691
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
-
checksum = "
|
|
692
|
+
checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
|
|
664
693
|
|
|
665
694
|
[[package]]
|
|
666
695
|
name = "debugid"
|
|
@@ -680,18 +709,18 @@ checksum = "da692b8d1080ea3045efaab14434d40468c3d8657e42abddfffca87b428f4c1b"
|
|
|
680
709
|
|
|
681
710
|
[[package]]
|
|
682
711
|
name = "deranged"
|
|
683
|
-
version = "0.4
|
|
712
|
+
version = "0.5.4"
|
|
684
713
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
-
checksum = "
|
|
714
|
+
checksum = "a41953f86f8a05768a6cda24def994fd2f424b04ec5c719cf89989779f199071"
|
|
686
715
|
dependencies = [
|
|
687
716
|
"powerfmt",
|
|
688
717
|
]
|
|
689
718
|
|
|
690
719
|
[[package]]
|
|
691
720
|
name = "derive_arbitrary"
|
|
692
|
-
version = "1.4.
|
|
721
|
+
version = "1.4.2"
|
|
693
722
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
-
checksum = "
|
|
723
|
+
checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
|
|
695
724
|
dependencies = [
|
|
696
725
|
"proc-macro2",
|
|
697
726
|
"quote",
|
|
@@ -787,15 +816,15 @@ checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
|
|
|
787
816
|
|
|
788
817
|
[[package]]
|
|
789
818
|
name = "dunce"
|
|
790
|
-
version = "1.0.
|
|
819
|
+
version = "1.0.5"
|
|
791
820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
-
checksum = "
|
|
821
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
793
822
|
|
|
794
823
|
[[package]]
|
|
795
824
|
name = "either"
|
|
796
|
-
version = "1.
|
|
825
|
+
version = "1.15.0"
|
|
797
826
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
798
|
-
checksum = "
|
|
827
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
799
828
|
|
|
800
829
|
[[package]]
|
|
801
830
|
name = "elementtree"
|
|
@@ -808,19 +837,13 @@ dependencies = [
|
|
|
808
837
|
|
|
809
838
|
[[package]]
|
|
810
839
|
name = "elsa"
|
|
811
|
-
version = "1.
|
|
840
|
+
version = "1.11.2"
|
|
812
841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
-
checksum = "
|
|
842
|
+
checksum = "9abf33c656a7256451ebb7d0082c5a471820c31269e49d807c538c252352186e"
|
|
814
843
|
dependencies = [
|
|
815
844
|
"stable_deref_trait",
|
|
816
845
|
]
|
|
817
846
|
|
|
818
|
-
[[package]]
|
|
819
|
-
name = "encode_unicode"
|
|
820
|
-
version = "0.3.6"
|
|
821
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
-
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
|
|
823
|
-
|
|
824
847
|
[[package]]
|
|
825
848
|
name = "encode_unicode"
|
|
826
849
|
version = "1.0.0"
|
|
@@ -828,83 +851,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
828
851
|
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
829
852
|
|
|
830
853
|
[[package]]
|
|
831
|
-
name = "
|
|
832
|
-
version = "0.
|
|
833
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
834
|
-
checksum = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec"
|
|
835
|
-
dependencies = [
|
|
836
|
-
"encoding-index-japanese",
|
|
837
|
-
"encoding-index-korean",
|
|
838
|
-
"encoding-index-simpchinese",
|
|
839
|
-
"encoding-index-singlebyte",
|
|
840
|
-
"encoding-index-tradchinese",
|
|
841
|
-
]
|
|
842
|
-
|
|
843
|
-
[[package]]
|
|
844
|
-
name = "encoding-index-japanese"
|
|
845
|
-
version = "1.20141219.5"
|
|
846
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
-
checksum = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91"
|
|
848
|
-
dependencies = [
|
|
849
|
-
"encoding_index_tests",
|
|
850
|
-
]
|
|
851
|
-
|
|
852
|
-
[[package]]
|
|
853
|
-
name = "encoding-index-korean"
|
|
854
|
-
version = "1.20141219.5"
|
|
855
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
856
|
-
checksum = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81"
|
|
857
|
-
dependencies = [
|
|
858
|
-
"encoding_index_tests",
|
|
859
|
-
]
|
|
860
|
-
|
|
861
|
-
[[package]]
|
|
862
|
-
name = "encoding-index-simpchinese"
|
|
863
|
-
version = "1.20141219.5"
|
|
864
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
865
|
-
checksum = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7"
|
|
866
|
-
dependencies = [
|
|
867
|
-
"encoding_index_tests",
|
|
868
|
-
]
|
|
869
|
-
|
|
870
|
-
[[package]]
|
|
871
|
-
name = "encoding-index-singlebyte"
|
|
872
|
-
version = "1.20141219.5"
|
|
873
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
874
|
-
checksum = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a"
|
|
875
|
-
dependencies = [
|
|
876
|
-
"encoding_index_tests",
|
|
877
|
-
]
|
|
878
|
-
|
|
879
|
-
[[package]]
|
|
880
|
-
name = "encoding-index-tradchinese"
|
|
881
|
-
version = "1.20141219.5"
|
|
854
|
+
name = "encoding_rs"
|
|
855
|
+
version = "0.8.35"
|
|
882
856
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
-
checksum = "
|
|
857
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
884
858
|
dependencies = [
|
|
885
|
-
"
|
|
859
|
+
"cfg-if",
|
|
886
860
|
]
|
|
887
861
|
|
|
888
|
-
[[package]]
|
|
889
|
-
name = "encoding_index_tests"
|
|
890
|
-
version = "0.1.4"
|
|
891
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
-
checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569"
|
|
893
|
-
|
|
894
862
|
[[package]]
|
|
895
863
|
name = "equivalent"
|
|
896
|
-
version = "1.0.
|
|
864
|
+
version = "1.0.2"
|
|
897
865
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
-
checksum = "
|
|
866
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
899
867
|
|
|
900
868
|
[[package]]
|
|
901
869
|
name = "errno"
|
|
902
|
-
version = "0.3.
|
|
870
|
+
version = "0.3.14"
|
|
903
871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
-
checksum = "
|
|
872
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
905
873
|
dependencies = [
|
|
906
874
|
"libc",
|
|
907
|
-
"windows-sys 0.
|
|
875
|
+
"windows-sys 0.61.1",
|
|
908
876
|
]
|
|
909
877
|
|
|
910
878
|
[[package]]
|
|
@@ -921,27 +889,33 @@ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
|
|
|
921
889
|
|
|
922
890
|
[[package]]
|
|
923
891
|
name = "fastrand"
|
|
924
|
-
version = "2.
|
|
892
|
+
version = "2.3.0"
|
|
925
893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
-
checksum = "
|
|
894
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
927
895
|
|
|
928
896
|
[[package]]
|
|
929
897
|
name = "filetime"
|
|
930
|
-
version = "0.2.
|
|
898
|
+
version = "0.2.26"
|
|
931
899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
932
|
-
checksum = "
|
|
900
|
+
checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
|
|
933
901
|
dependencies = [
|
|
934
902
|
"cfg-if",
|
|
935
903
|
"libc",
|
|
936
|
-
"
|
|
937
|
-
"windows-sys 0.
|
|
904
|
+
"libredox",
|
|
905
|
+
"windows-sys 0.60.2",
|
|
938
906
|
]
|
|
939
907
|
|
|
908
|
+
[[package]]
|
|
909
|
+
name = "find-msvc-tools"
|
|
910
|
+
version = "0.1.2"
|
|
911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
912
|
+
checksum = "1ced73b1dacfc750a6db6c0a0c3a3853c8b41997e2e2c563dc90804ae6867959"
|
|
913
|
+
|
|
940
914
|
[[package]]
|
|
941
915
|
name = "flate2"
|
|
942
|
-
version = "1.
|
|
916
|
+
version = "1.1.2"
|
|
943
917
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
944
|
-
checksum = "
|
|
918
|
+
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
|
|
945
919
|
dependencies = [
|
|
946
920
|
"crc32fast",
|
|
947
921
|
"miniz_oxide",
|
|
@@ -953,11 +927,17 @@ version = "1.0.7"
|
|
|
953
927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
928
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
955
929
|
|
|
930
|
+
[[package]]
|
|
931
|
+
name = "foldhash"
|
|
932
|
+
version = "0.1.5"
|
|
933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
935
|
+
|
|
956
936
|
[[package]]
|
|
957
937
|
name = "form_urlencoded"
|
|
958
|
-
version = "1.2.
|
|
938
|
+
version = "1.2.2"
|
|
959
939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
-
checksum = "
|
|
940
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
961
941
|
dependencies = [
|
|
962
942
|
"percent-encoding",
|
|
963
943
|
]
|
|
@@ -970,9 +950,9 @@ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
|
970
950
|
|
|
971
951
|
[[package]]
|
|
972
952
|
name = "futures"
|
|
973
|
-
version = "0.3.
|
|
953
|
+
version = "0.3.31"
|
|
974
954
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
975
|
-
checksum = "
|
|
955
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
976
956
|
dependencies = [
|
|
977
957
|
"futures-channel",
|
|
978
958
|
"futures-core",
|
|
@@ -985,9 +965,9 @@ dependencies = [
|
|
|
985
965
|
|
|
986
966
|
[[package]]
|
|
987
967
|
name = "futures-channel"
|
|
988
|
-
version = "0.3.
|
|
968
|
+
version = "0.3.31"
|
|
989
969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
990
|
-
checksum = "
|
|
970
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
991
971
|
dependencies = [
|
|
992
972
|
"futures-core",
|
|
993
973
|
"futures-sink",
|
|
@@ -995,15 +975,15 @@ dependencies = [
|
|
|
995
975
|
|
|
996
976
|
[[package]]
|
|
997
977
|
name = "futures-core"
|
|
998
|
-
version = "0.3.
|
|
978
|
+
version = "0.3.31"
|
|
999
979
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1000
|
-
checksum = "
|
|
980
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
1001
981
|
|
|
1002
982
|
[[package]]
|
|
1003
983
|
name = "futures-executor"
|
|
1004
|
-
version = "0.3.
|
|
984
|
+
version = "0.3.31"
|
|
1005
985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
-
checksum = "
|
|
986
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
1007
987
|
dependencies = [
|
|
1008
988
|
"futures-core",
|
|
1009
989
|
"futures-task",
|
|
@@ -1012,15 +992,15 @@ dependencies = [
|
|
|
1012
992
|
|
|
1013
993
|
[[package]]
|
|
1014
994
|
name = "futures-io"
|
|
1015
|
-
version = "0.3.
|
|
995
|
+
version = "0.3.31"
|
|
1016
996
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
-
checksum = "
|
|
997
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
1018
998
|
|
|
1019
999
|
[[package]]
|
|
1020
1000
|
name = "futures-macro"
|
|
1021
|
-
version = "0.3.
|
|
1001
|
+
version = "0.3.31"
|
|
1022
1002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1023
|
-
checksum = "
|
|
1003
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
1024
1004
|
dependencies = [
|
|
1025
1005
|
"proc-macro2",
|
|
1026
1006
|
"quote",
|
|
@@ -1029,15 +1009,15 @@ dependencies = [
|
|
|
1029
1009
|
|
|
1030
1010
|
[[package]]
|
|
1031
1011
|
name = "futures-sink"
|
|
1032
|
-
version = "0.3.
|
|
1012
|
+
version = "0.3.31"
|
|
1033
1013
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
-
checksum = "
|
|
1014
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
1035
1015
|
|
|
1036
1016
|
[[package]]
|
|
1037
1017
|
name = "futures-task"
|
|
1038
|
-
version = "0.3.
|
|
1018
|
+
version = "0.3.31"
|
|
1039
1019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
-
checksum = "
|
|
1020
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
1041
1021
|
|
|
1042
1022
|
[[package]]
|
|
1043
1023
|
name = "futures-timer"
|
|
@@ -1047,9 +1027,9 @@ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
|
|
|
1047
1027
|
|
|
1048
1028
|
[[package]]
|
|
1049
1029
|
name = "futures-util"
|
|
1050
|
-
version = "0.3.
|
|
1030
|
+
version = "0.3.31"
|
|
1051
1031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1052
|
-
checksum = "
|
|
1032
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
1053
1033
|
dependencies = [
|
|
1054
1034
|
"futures-channel",
|
|
1055
1035
|
"futures-core",
|
|
@@ -1075,40 +1055,34 @@ dependencies = [
|
|
|
1075
1055
|
|
|
1076
1056
|
[[package]]
|
|
1077
1057
|
name = "getrandom"
|
|
1078
|
-
version = "0.2.
|
|
1058
|
+
version = "0.2.16"
|
|
1079
1059
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
-
checksum = "
|
|
1060
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
1081
1061
|
dependencies = [
|
|
1082
1062
|
"cfg-if",
|
|
1083
1063
|
"libc",
|
|
1084
|
-
"wasi 0.11.
|
|
1064
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
1085
1065
|
]
|
|
1086
1066
|
|
|
1087
1067
|
[[package]]
|
|
1088
1068
|
name = "getrandom"
|
|
1089
|
-
version = "0.3.
|
|
1069
|
+
version = "0.3.3"
|
|
1090
1070
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
-
checksum = "
|
|
1071
|
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
|
|
1092
1072
|
dependencies = [
|
|
1093
1073
|
"cfg-if",
|
|
1094
1074
|
"js-sys",
|
|
1095
1075
|
"libc",
|
|
1096
1076
|
"r-efi",
|
|
1097
|
-
"wasi 0.14.
|
|
1077
|
+
"wasi 0.14.7+wasi-0.2.4",
|
|
1098
1078
|
"wasm-bindgen",
|
|
1099
1079
|
]
|
|
1100
1080
|
|
|
1101
1081
|
[[package]]
|
|
1102
1082
|
name = "gimli"
|
|
1103
|
-
version = "0.
|
|
1083
|
+
version = "0.32.3"
|
|
1104
1084
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
-
checksum = "
|
|
1106
|
-
|
|
1107
|
-
[[package]]
|
|
1108
|
-
name = "gimli"
|
|
1109
|
-
version = "0.31.0"
|
|
1110
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
-
checksum = "32085ea23f3234fc7846555e85283ba4de91e21016dc0455a16286d87a292d64"
|
|
1085
|
+
checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
|
|
1112
1086
|
dependencies = [
|
|
1113
1087
|
"fallible-iterator 0.3.0",
|
|
1114
1088
|
"stable_deref_trait",
|
|
@@ -1120,7 +1094,7 @@ version = "0.18.3"
|
|
|
1120
1094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1121
1095
|
checksum = "232e6a7bfe35766bf715e55a88b39a700596c0ccfd88cd3680b4cdb40d66ef70"
|
|
1122
1096
|
dependencies = [
|
|
1123
|
-
"bitflags 2.
|
|
1097
|
+
"bitflags 2.9.4",
|
|
1124
1098
|
"libc",
|
|
1125
1099
|
"libgit2-sys",
|
|
1126
1100
|
"log",
|
|
@@ -1129,15 +1103,15 @@ dependencies = [
|
|
|
1129
1103
|
|
|
1130
1104
|
[[package]]
|
|
1131
1105
|
name = "glob"
|
|
1132
|
-
version = "0.3.
|
|
1106
|
+
version = "0.3.3"
|
|
1133
1107
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
-
checksum = "
|
|
1108
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
1135
1109
|
|
|
1136
1110
|
[[package]]
|
|
1137
1111
|
name = "globset"
|
|
1138
|
-
version = "0.4.
|
|
1112
|
+
version = "0.4.16"
|
|
1139
1113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
|
-
checksum = "
|
|
1114
|
+
checksum = "54a1028dfc5f5df5da8a56a73e6c153c9a9708ec57232470703592a3f18e49f5"
|
|
1141
1115
|
dependencies = [
|
|
1142
1116
|
"aho-corasick",
|
|
1143
1117
|
"bstr",
|
|
@@ -1146,6 +1120,18 @@ dependencies = [
|
|
|
1146
1120
|
"regex-syntax",
|
|
1147
1121
|
]
|
|
1148
1122
|
|
|
1123
|
+
[[package]]
|
|
1124
|
+
name = "gloo-timers"
|
|
1125
|
+
version = "0.3.0"
|
|
1126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
+
checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
|
|
1128
|
+
dependencies = [
|
|
1129
|
+
"futures-channel",
|
|
1130
|
+
"futures-core",
|
|
1131
|
+
"js-sys",
|
|
1132
|
+
"wasm-bindgen",
|
|
1133
|
+
]
|
|
1134
|
+
|
|
1149
1135
|
[[package]]
|
|
1150
1136
|
name = "goblin"
|
|
1151
1137
|
version = "0.8.2"
|
|
@@ -1159,9 +1145,9 @@ dependencies = [
|
|
|
1159
1145
|
|
|
1160
1146
|
[[package]]
|
|
1161
1147
|
name = "h2"
|
|
1162
|
-
version = "0.4.
|
|
1148
|
+
version = "0.4.12"
|
|
1163
1149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1164
|
-
checksum = "
|
|
1150
|
+
checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
|
|
1165
1151
|
dependencies = [
|
|
1166
1152
|
"atomic-waker",
|
|
1167
1153
|
"bytes",
|
|
@@ -1191,27 +1177,38 @@ version = "0.14.5"
|
|
|
1191
1177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1192
1178
|
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1193
1179
|
dependencies = [
|
|
1194
|
-
"ahash 0.8.
|
|
1180
|
+
"ahash 0.8.12",
|
|
1195
1181
|
"serde",
|
|
1196
1182
|
]
|
|
1197
1183
|
|
|
1198
1184
|
[[package]]
|
|
1199
|
-
name = "
|
|
1200
|
-
version = "0.5
|
|
1185
|
+
name = "hashbrown"
|
|
1186
|
+
version = "0.15.5"
|
|
1201
1187
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1202
|
-
checksum = "
|
|
1188
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1189
|
+
dependencies = [
|
|
1190
|
+
"allocator-api2",
|
|
1191
|
+
"equivalent",
|
|
1192
|
+
"foldhash",
|
|
1193
|
+
]
|
|
1203
1194
|
|
|
1204
1195
|
[[package]]
|
|
1205
|
-
name = "
|
|
1206
|
-
version = "0.
|
|
1196
|
+
name = "hashbrown"
|
|
1197
|
+
version = "0.16.0"
|
|
1198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1199
|
+
checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
|
|
1200
|
+
|
|
1201
|
+
[[package]]
|
|
1202
|
+
name = "heck"
|
|
1203
|
+
version = "0.5.0"
|
|
1207
1204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1208
|
-
checksum = "
|
|
1205
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1209
1206
|
|
|
1210
1207
|
[[package]]
|
|
1211
1208
|
name = "hermit-abi"
|
|
1212
|
-
version = "0.
|
|
1209
|
+
version = "0.5.2"
|
|
1213
1210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1214
|
-
checksum = "
|
|
1211
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1215
1212
|
|
|
1216
1213
|
[[package]]
|
|
1217
1214
|
name = "hex"
|
|
@@ -1230,29 +1227,29 @@ dependencies = [
|
|
|
1230
1227
|
|
|
1231
1228
|
[[package]]
|
|
1232
1229
|
name = "home"
|
|
1233
|
-
version = "0.5.
|
|
1230
|
+
version = "0.5.11"
|
|
1234
1231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1235
|
-
checksum = "
|
|
1232
|
+
checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
|
|
1236
1233
|
dependencies = [
|
|
1237
|
-
"windows-sys 0.
|
|
1234
|
+
"windows-sys 0.59.0",
|
|
1238
1235
|
]
|
|
1239
1236
|
|
|
1240
1237
|
[[package]]
|
|
1241
1238
|
name = "hostname"
|
|
1242
|
-
version = "0.4.
|
|
1239
|
+
version = "0.4.1"
|
|
1243
1240
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1244
|
-
checksum = "
|
|
1241
|
+
checksum = "a56f203cd1c76362b69e3863fd987520ac36cf70a8c92627449b2f64a8cf7d65"
|
|
1245
1242
|
dependencies = [
|
|
1246
1243
|
"cfg-if",
|
|
1247
1244
|
"libc",
|
|
1248
|
-
"windows",
|
|
1245
|
+
"windows-link 0.1.3",
|
|
1249
1246
|
]
|
|
1250
1247
|
|
|
1251
1248
|
[[package]]
|
|
1252
1249
|
name = "http"
|
|
1253
|
-
version = "1.1
|
|
1250
|
+
version = "1.3.1"
|
|
1254
1251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
|
-
checksum = "
|
|
1252
|
+
checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
|
|
1256
1253
|
dependencies = [
|
|
1257
1254
|
"bytes",
|
|
1258
1255
|
"fnv",
|
|
@@ -1271,12 +1268,12 @@ dependencies = [
|
|
|
1271
1268
|
|
|
1272
1269
|
[[package]]
|
|
1273
1270
|
name = "http-body-util"
|
|
1274
|
-
version = "0.1.
|
|
1271
|
+
version = "0.1.3"
|
|
1275
1272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1276
|
-
checksum = "
|
|
1273
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
1277
1274
|
dependencies = [
|
|
1278
1275
|
"bytes",
|
|
1279
|
-
"futures-
|
|
1276
|
+
"futures-core",
|
|
1280
1277
|
"http",
|
|
1281
1278
|
"http-body",
|
|
1282
1279
|
"pin-project-lite",
|
|
@@ -1284,9 +1281,9 @@ dependencies = [
|
|
|
1284
1281
|
|
|
1285
1282
|
[[package]]
|
|
1286
1283
|
name = "httparse"
|
|
1287
|
-
version = "1.
|
|
1284
|
+
version = "1.10.1"
|
|
1288
1285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1289
|
-
checksum = "
|
|
1286
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1290
1287
|
|
|
1291
1288
|
[[package]]
|
|
1292
1289
|
name = "httpdate"
|
|
@@ -1296,9 +1293,9 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
|
1296
1293
|
|
|
1297
1294
|
[[package]]
|
|
1298
1295
|
name = "humantime"
|
|
1299
|
-
version = "2.
|
|
1296
|
+
version = "2.3.0"
|
|
1300
1297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
|
-
checksum = "
|
|
1298
|
+
checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
|
|
1302
1299
|
|
|
1303
1300
|
[[package]]
|
|
1304
1301
|
name = "humantime-serde"
|
|
@@ -1312,13 +1309,14 @@ dependencies = [
|
|
|
1312
1309
|
|
|
1313
1310
|
[[package]]
|
|
1314
1311
|
name = "hyper"
|
|
1315
|
-
version = "1.
|
|
1312
|
+
version = "1.7.0"
|
|
1316
1313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1317
|
-
checksum = "
|
|
1314
|
+
checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
|
|
1318
1315
|
dependencies = [
|
|
1316
|
+
"atomic-waker",
|
|
1319
1317
|
"bytes",
|
|
1320
1318
|
"futures-channel",
|
|
1321
|
-
"futures-
|
|
1319
|
+
"futures-core",
|
|
1322
1320
|
"h2",
|
|
1323
1321
|
"http",
|
|
1324
1322
|
"http-body",
|
|
@@ -1326,18 +1324,19 @@ dependencies = [
|
|
|
1326
1324
|
"httpdate",
|
|
1327
1325
|
"itoa",
|
|
1328
1326
|
"pin-project-lite",
|
|
1327
|
+
"pin-utils",
|
|
1329
1328
|
"smallvec",
|
|
1330
1329
|
"tokio",
|
|
1331
1330
|
]
|
|
1332
1331
|
|
|
1333
1332
|
[[package]]
|
|
1334
1333
|
name = "hyper-util"
|
|
1335
|
-
version = "0.1.
|
|
1334
|
+
version = "0.1.17"
|
|
1336
1335
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1337
|
-
checksum = "
|
|
1336
|
+
checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8"
|
|
1338
1337
|
dependencies = [
|
|
1339
1338
|
"bytes",
|
|
1340
|
-
"futures-
|
|
1339
|
+
"futures-core",
|
|
1341
1340
|
"http",
|
|
1342
1341
|
"http-body",
|
|
1343
1342
|
"hyper",
|
|
@@ -1347,14 +1346,15 @@ dependencies = [
|
|
|
1347
1346
|
|
|
1348
1347
|
[[package]]
|
|
1349
1348
|
name = "iana-time-zone"
|
|
1350
|
-
version = "0.1.
|
|
1349
|
+
version = "0.1.64"
|
|
1351
1350
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
-
checksum = "
|
|
1351
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
1353
1352
|
dependencies = [
|
|
1354
1353
|
"android_system_properties",
|
|
1355
1354
|
"core-foundation-sys",
|
|
1356
1355
|
"iana-time-zone-haiku",
|
|
1357
1356
|
"js-sys",
|
|
1357
|
+
"log",
|
|
1358
1358
|
"wasm-bindgen",
|
|
1359
1359
|
"windows-core",
|
|
1360
1360
|
]
|
|
@@ -1370,21 +1370,22 @@ dependencies = [
|
|
|
1370
1370
|
|
|
1371
1371
|
[[package]]
|
|
1372
1372
|
name = "icu_collections"
|
|
1373
|
-
version = "
|
|
1373
|
+
version = "2.0.0"
|
|
1374
1374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1375
|
-
checksum = "
|
|
1375
|
+
checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
|
|
1376
1376
|
dependencies = [
|
|
1377
1377
|
"displaydoc",
|
|
1378
|
+
"potential_utf",
|
|
1378
1379
|
"yoke",
|
|
1379
1380
|
"zerofrom",
|
|
1380
1381
|
"zerovec",
|
|
1381
1382
|
]
|
|
1382
1383
|
|
|
1383
1384
|
[[package]]
|
|
1384
|
-
name = "
|
|
1385
|
-
version = "
|
|
1385
|
+
name = "icu_locale_core"
|
|
1386
|
+
version = "2.0.0"
|
|
1386
1387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1387
|
-
checksum = "
|
|
1388
|
+
checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
|
|
1388
1389
|
dependencies = [
|
|
1389
1390
|
"displaydoc",
|
|
1390
1391
|
"litemap",
|
|
@@ -1393,31 +1394,11 @@ dependencies = [
|
|
|
1393
1394
|
"zerovec",
|
|
1394
1395
|
]
|
|
1395
1396
|
|
|
1396
|
-
[[package]]
|
|
1397
|
-
name = "icu_locid_transform"
|
|
1398
|
-
version = "1.5.0"
|
|
1399
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1400
|
-
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
|
1401
|
-
dependencies = [
|
|
1402
|
-
"displaydoc",
|
|
1403
|
-
"icu_locid",
|
|
1404
|
-
"icu_locid_transform_data",
|
|
1405
|
-
"icu_provider",
|
|
1406
|
-
"tinystr",
|
|
1407
|
-
"zerovec",
|
|
1408
|
-
]
|
|
1409
|
-
|
|
1410
|
-
[[package]]
|
|
1411
|
-
name = "icu_locid_transform_data"
|
|
1412
|
-
version = "1.5.0"
|
|
1413
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
-
checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
|
|
1415
|
-
|
|
1416
1397
|
[[package]]
|
|
1417
1398
|
name = "icu_normalizer"
|
|
1418
|
-
version = "
|
|
1399
|
+
version = "2.0.0"
|
|
1419
1400
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1420
|
-
checksum = "
|
|
1401
|
+
checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
|
|
1421
1402
|
dependencies = [
|
|
1422
1403
|
"displaydoc",
|
|
1423
1404
|
"icu_collections",
|
|
@@ -1425,72 +1406,59 @@ dependencies = [
|
|
|
1425
1406
|
"icu_properties",
|
|
1426
1407
|
"icu_provider",
|
|
1427
1408
|
"smallvec",
|
|
1428
|
-
"utf16_iter",
|
|
1429
|
-
"utf8_iter",
|
|
1430
|
-
"write16",
|
|
1431
1409
|
"zerovec",
|
|
1432
1410
|
]
|
|
1433
1411
|
|
|
1434
1412
|
[[package]]
|
|
1435
1413
|
name = "icu_normalizer_data"
|
|
1436
|
-
version = "
|
|
1414
|
+
version = "2.0.0"
|
|
1437
1415
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
-
checksum = "
|
|
1416
|
+
checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
|
|
1439
1417
|
|
|
1440
1418
|
[[package]]
|
|
1441
1419
|
name = "icu_properties"
|
|
1442
|
-
version = "
|
|
1420
|
+
version = "2.0.1"
|
|
1443
1421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
-
checksum = "
|
|
1422
|
+
checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
|
|
1445
1423
|
dependencies = [
|
|
1446
1424
|
"displaydoc",
|
|
1447
1425
|
"icu_collections",
|
|
1448
|
-
"
|
|
1426
|
+
"icu_locale_core",
|
|
1449
1427
|
"icu_properties_data",
|
|
1450
1428
|
"icu_provider",
|
|
1451
|
-
"
|
|
1429
|
+
"potential_utf",
|
|
1430
|
+
"zerotrie",
|
|
1452
1431
|
"zerovec",
|
|
1453
1432
|
]
|
|
1454
1433
|
|
|
1455
1434
|
[[package]]
|
|
1456
1435
|
name = "icu_properties_data"
|
|
1457
|
-
version = "
|
|
1436
|
+
version = "2.0.1"
|
|
1458
1437
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1459
|
-
checksum = "
|
|
1438
|
+
checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
|
|
1460
1439
|
|
|
1461
1440
|
[[package]]
|
|
1462
1441
|
name = "icu_provider"
|
|
1463
|
-
version = "
|
|
1442
|
+
version = "2.0.0"
|
|
1464
1443
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1465
|
-
checksum = "
|
|
1444
|
+
checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
|
|
1466
1445
|
dependencies = [
|
|
1467
1446
|
"displaydoc",
|
|
1468
|
-
"
|
|
1469
|
-
"icu_provider_macros",
|
|
1447
|
+
"icu_locale_core",
|
|
1470
1448
|
"stable_deref_trait",
|
|
1471
1449
|
"tinystr",
|
|
1472
1450
|
"writeable",
|
|
1473
1451
|
"yoke",
|
|
1474
1452
|
"zerofrom",
|
|
1453
|
+
"zerotrie",
|
|
1475
1454
|
"zerovec",
|
|
1476
1455
|
]
|
|
1477
1456
|
|
|
1478
|
-
[[package]]
|
|
1479
|
-
name = "icu_provider_macros"
|
|
1480
|
-
version = "1.5.0"
|
|
1481
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1482
|
-
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
|
1483
|
-
dependencies = [
|
|
1484
|
-
"proc-macro2",
|
|
1485
|
-
"quote",
|
|
1486
|
-
"syn",
|
|
1487
|
-
]
|
|
1488
|
-
|
|
1489
1457
|
[[package]]
|
|
1490
1458
|
name = "idna"
|
|
1491
|
-
version = "1.0
|
|
1459
|
+
version = "1.1.0"
|
|
1492
1460
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
-
checksum = "
|
|
1461
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1494
1462
|
dependencies = [
|
|
1495
1463
|
"idna_adapter",
|
|
1496
1464
|
"smallvec",
|
|
@@ -1499,9 +1467,9 @@ dependencies = [
|
|
|
1499
1467
|
|
|
1500
1468
|
[[package]]
|
|
1501
1469
|
name = "idna_adapter"
|
|
1502
|
-
version = "1.2.
|
|
1470
|
+
version = "1.2.1"
|
|
1503
1471
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1504
|
-
checksum = "
|
|
1472
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1505
1473
|
dependencies = [
|
|
1506
1474
|
"icu_normalizer",
|
|
1507
1475
|
"icu_properties",
|
|
@@ -1509,15 +1477,15 @@ dependencies = [
|
|
|
1509
1477
|
|
|
1510
1478
|
[[package]]
|
|
1511
1479
|
name = "if_chain"
|
|
1512
|
-
version = "1.0.
|
|
1480
|
+
version = "1.0.3"
|
|
1513
1481
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1514
|
-
checksum = "
|
|
1482
|
+
checksum = "cd62e6b5e86ea8eeeb8db1de02880a6abc01a397b2ebb64b5d74ac255318f5cb"
|
|
1515
1483
|
|
|
1516
1484
|
[[package]]
|
|
1517
1485
|
name = "ignore"
|
|
1518
|
-
version = "0.4.
|
|
1486
|
+
version = "0.4.23"
|
|
1519
1487
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1520
|
-
checksum = "
|
|
1488
|
+
checksum = "6d89fd380afde86567dfba715db065673989d6253f42b88179abd3eae47bda4b"
|
|
1521
1489
|
dependencies = [
|
|
1522
1490
|
"crossbeam-deque",
|
|
1523
1491
|
"globset",
|
|
@@ -1537,13 +1505,14 @@ checksum = "0cfe9645a18782869361d9c8732246be7b410ad4e919d3609ebabdac00ba12c3"
|
|
|
1537
1505
|
|
|
1538
1506
|
[[package]]
|
|
1539
1507
|
name = "indexmap"
|
|
1540
|
-
version = "2.
|
|
1508
|
+
version = "2.11.4"
|
|
1541
1509
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1542
|
-
checksum = "
|
|
1510
|
+
checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5"
|
|
1543
1511
|
dependencies = [
|
|
1544
1512
|
"equivalent",
|
|
1545
|
-
"hashbrown 0.
|
|
1513
|
+
"hashbrown 0.16.0",
|
|
1546
1514
|
"serde",
|
|
1515
|
+
"serde_core",
|
|
1547
1516
|
]
|
|
1548
1517
|
|
|
1549
1518
|
[[package]]
|
|
@@ -1552,7 +1521,7 @@ version = "0.14.0"
|
|
|
1552
1521
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1553
1522
|
checksum = "49a68371cf417889c9d7f98235b7102ea7c54fc59bcbd22f3dea785be9d27e40"
|
|
1554
1523
|
dependencies = [
|
|
1555
|
-
"console",
|
|
1524
|
+
"console 0.16.1",
|
|
1556
1525
|
"lazy_static",
|
|
1557
1526
|
"number_prefix",
|
|
1558
1527
|
"regex",
|
|
@@ -1560,9 +1529,9 @@ dependencies = [
|
|
|
1560
1529
|
|
|
1561
1530
|
[[package]]
|
|
1562
1531
|
name = "inout"
|
|
1563
|
-
version = "0.1.
|
|
1532
|
+
version = "0.1.4"
|
|
1564
1533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1565
|
-
checksum = "
|
|
1534
|
+
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
1566
1535
|
dependencies = [
|
|
1567
1536
|
"generic-array",
|
|
1568
1537
|
]
|
|
@@ -1578,13 +1547,12 @@ dependencies = [
|
|
|
1578
1547
|
|
|
1579
1548
|
[[package]]
|
|
1580
1549
|
name = "insta"
|
|
1581
|
-
version = "1.
|
|
1550
|
+
version = "1.43.2"
|
|
1582
1551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1583
|
-
checksum = "
|
|
1552
|
+
checksum = "46fdb647ebde000f43b5b53f773c30cf9b0cb4300453208713fa38b2c70935a0"
|
|
1584
1553
|
dependencies = [
|
|
1585
|
-
"console",
|
|
1586
|
-
"
|
|
1587
|
-
"linked-hash-map",
|
|
1554
|
+
"console 0.15.11",
|
|
1555
|
+
"once_cell",
|
|
1588
1556
|
"pest",
|
|
1589
1557
|
"pest_derive",
|
|
1590
1558
|
"serde",
|
|
@@ -1592,30 +1560,32 @@ dependencies = [
|
|
|
1592
1560
|
]
|
|
1593
1561
|
|
|
1594
1562
|
[[package]]
|
|
1595
|
-
name = "
|
|
1596
|
-
version = "0.
|
|
1563
|
+
name = "io-uring"
|
|
1564
|
+
version = "0.7.10"
|
|
1597
1565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1598
|
-
checksum = "
|
|
1566
|
+
checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b"
|
|
1599
1567
|
dependencies = [
|
|
1568
|
+
"bitflags 2.9.4",
|
|
1600
1569
|
"cfg-if",
|
|
1570
|
+
"libc",
|
|
1601
1571
|
]
|
|
1602
1572
|
|
|
1603
1573
|
[[package]]
|
|
1604
1574
|
name = "is-terminal"
|
|
1605
|
-
version = "0.4.
|
|
1575
|
+
version = "0.4.16"
|
|
1606
1576
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1607
|
-
checksum = "
|
|
1577
|
+
checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
|
|
1608
1578
|
dependencies = [
|
|
1609
|
-
"hermit-abi
|
|
1579
|
+
"hermit-abi",
|
|
1610
1580
|
"libc",
|
|
1611
|
-
"windows-sys 0.
|
|
1581
|
+
"windows-sys 0.59.0",
|
|
1612
1582
|
]
|
|
1613
1583
|
|
|
1614
1584
|
[[package]]
|
|
1615
1585
|
name = "is_terminal_polyfill"
|
|
1616
|
-
version = "1.70.
|
|
1586
|
+
version = "1.70.1"
|
|
1617
1587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1618
|
-
checksum = "
|
|
1588
|
+
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
|
1619
1589
|
|
|
1620
1590
|
[[package]]
|
|
1621
1591
|
name = "itertools"
|
|
@@ -1628,27 +1598,28 @@ dependencies = [
|
|
|
1628
1598
|
|
|
1629
1599
|
[[package]]
|
|
1630
1600
|
name = "itoa"
|
|
1631
|
-
version = "1.0.
|
|
1601
|
+
version = "1.0.15"
|
|
1632
1602
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1633
|
-
checksum = "
|
|
1603
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
1634
1604
|
|
|
1635
1605
|
[[package]]
|
|
1636
1606
|
name = "java-properties"
|
|
1637
|
-
version = "
|
|
1607
|
+
version = "2.0.0"
|
|
1638
1608
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1639
|
-
checksum = "
|
|
1609
|
+
checksum = "37bf6f484471c451f2b51eabd9e66b3fa7274550c5ec4b6c3d6070840945117f"
|
|
1640
1610
|
dependencies = [
|
|
1641
|
-
"
|
|
1611
|
+
"encoding_rs",
|
|
1642
1612
|
"lazy_static",
|
|
1643
1613
|
"regex",
|
|
1644
1614
|
]
|
|
1645
1615
|
|
|
1646
1616
|
[[package]]
|
|
1647
1617
|
name = "jobserver"
|
|
1648
|
-
version = "0.1.
|
|
1618
|
+
version = "0.1.34"
|
|
1649
1619
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1650
|
-
checksum = "
|
|
1620
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1651
1621
|
dependencies = [
|
|
1622
|
+
"getrandom 0.3.3",
|
|
1652
1623
|
"libc",
|
|
1653
1624
|
]
|
|
1654
1625
|
|
|
@@ -1660,9 +1631,9 @@ checksum = "72167d68f5fce3b8655487b8038691a3c9984ee769590f93f2a631f4ad64e4f5"
|
|
|
1660
1631
|
|
|
1661
1632
|
[[package]]
|
|
1662
1633
|
name = "js-sys"
|
|
1663
|
-
version = "0.3.
|
|
1634
|
+
version = "0.3.81"
|
|
1664
1635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1665
|
-
checksum = "
|
|
1636
|
+
checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305"
|
|
1666
1637
|
dependencies = [
|
|
1667
1638
|
"once_cell",
|
|
1668
1639
|
"wasm-bindgen",
|
|
@@ -1682,9 +1653,9 @@ checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
|
|
|
1682
1653
|
|
|
1683
1654
|
[[package]]
|
|
1684
1655
|
name = "libc"
|
|
1685
|
-
version = "0.2.
|
|
1656
|
+
version = "0.2.176"
|
|
1686
1657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1687
|
-
checksum = "
|
|
1658
|
+
checksum = "58f929b4d672ea937a23a1ab494143d968337a5f47e56d0815df1e0890ddf174"
|
|
1688
1659
|
|
|
1689
1660
|
[[package]]
|
|
1690
1661
|
name = "libgit2-sys"
|
|
@@ -1700,19 +1671,20 @@ dependencies = [
|
|
|
1700
1671
|
|
|
1701
1672
|
[[package]]
|
|
1702
1673
|
name = "libredox"
|
|
1703
|
-
version = "0.1.
|
|
1674
|
+
version = "0.1.10"
|
|
1704
1675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1705
|
-
checksum = "
|
|
1676
|
+
checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
|
|
1706
1677
|
dependencies = [
|
|
1707
|
-
"bitflags 2.
|
|
1678
|
+
"bitflags 2.9.4",
|
|
1708
1679
|
"libc",
|
|
1680
|
+
"redox_syscall",
|
|
1709
1681
|
]
|
|
1710
1682
|
|
|
1711
1683
|
[[package]]
|
|
1712
1684
|
name = "libz-sys"
|
|
1713
|
-
version = "1.1.
|
|
1685
|
+
version = "1.1.22"
|
|
1714
1686
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1715
|
-
checksum = "
|
|
1687
|
+
checksum = "8b70e7a7df205e92a1a4cd9aaae7898dac0aa555503cc0a649494d0d60e7651d"
|
|
1716
1688
|
dependencies = [
|
|
1717
1689
|
"cc",
|
|
1718
1690
|
"libc",
|
|
@@ -1721,44 +1693,47 @@ dependencies = [
|
|
|
1721
1693
|
]
|
|
1722
1694
|
|
|
1723
1695
|
[[package]]
|
|
1724
|
-
name = "
|
|
1725
|
-
version = "0.
|
|
1696
|
+
name = "linux-raw-sys"
|
|
1697
|
+
version = "0.4.15"
|
|
1726
1698
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1727
|
-
checksum = "
|
|
1699
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1728
1700
|
|
|
1729
1701
|
[[package]]
|
|
1730
1702
|
name = "linux-raw-sys"
|
|
1731
|
-
version = "0.
|
|
1703
|
+
version = "0.11.0"
|
|
1732
1704
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1733
|
-
checksum = "
|
|
1705
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
1734
1706
|
|
|
1735
1707
|
[[package]]
|
|
1736
1708
|
name = "litemap"
|
|
1737
|
-
version = "0.
|
|
1709
|
+
version = "0.8.0"
|
|
1738
1710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1739
|
-
checksum = "
|
|
1711
|
+
checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
|
|
1740
1712
|
|
|
1741
1713
|
[[package]]
|
|
1742
1714
|
name = "lock_api"
|
|
1743
|
-
version = "0.4.
|
|
1715
|
+
version = "0.4.13"
|
|
1744
1716
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1745
|
-
checksum = "
|
|
1717
|
+
checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
|
|
1746
1718
|
dependencies = [
|
|
1747
1719
|
"autocfg",
|
|
1748
1720
|
"scopeguard",
|
|
1749
1721
|
]
|
|
1750
1722
|
|
|
1751
1723
|
[[package]]
|
|
1752
|
-
name = "
|
|
1753
|
-
version = "0.
|
|
1724
|
+
name = "log"
|
|
1725
|
+
version = "0.4.28"
|
|
1754
1726
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1755
|
-
checksum = "
|
|
1727
|
+
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
|
|
1756
1728
|
|
|
1757
1729
|
[[package]]
|
|
1758
|
-
name = "
|
|
1759
|
-
version = "0.
|
|
1730
|
+
name = "lru"
|
|
1731
|
+
version = "0.16.1"
|
|
1760
1732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1761
|
-
checksum = "
|
|
1733
|
+
checksum = "bfe949189f46fabb938b3a9a0be30fdd93fd8a09260da863399a8cf3db756ec8"
|
|
1734
|
+
dependencies = [
|
|
1735
|
+
"hashbrown 0.15.5",
|
|
1736
|
+
]
|
|
1762
1737
|
|
|
1763
1738
|
[[package]]
|
|
1764
1739
|
name = "lzma-rs"
|
|
@@ -1811,15 +1786,15 @@ checksum = "4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4"
|
|
|
1811
1786
|
|
|
1812
1787
|
[[package]]
|
|
1813
1788
|
name = "memchr"
|
|
1814
|
-
version = "2.7.
|
|
1789
|
+
version = "2.7.6"
|
|
1815
1790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
-
checksum = "
|
|
1791
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
1817
1792
|
|
|
1818
1793
|
[[package]]
|
|
1819
1794
|
name = "memmap2"
|
|
1820
|
-
version = "0.9.
|
|
1795
|
+
version = "0.9.8"
|
|
1821
1796
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1822
|
-
checksum = "
|
|
1797
|
+
checksum = "843a98750cd611cc2965a8213b53b43e715f13c37a9e096c6408e69990961db7"
|
|
1823
1798
|
dependencies = [
|
|
1824
1799
|
"libc",
|
|
1825
1800
|
]
|
|
@@ -1832,30 +1807,29 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
1832
1807
|
|
|
1833
1808
|
[[package]]
|
|
1834
1809
|
name = "miniz_oxide"
|
|
1835
|
-
version = "0.
|
|
1810
|
+
version = "0.8.9"
|
|
1836
1811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1837
|
-
checksum = "
|
|
1812
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1838
1813
|
dependencies = [
|
|
1839
|
-
"
|
|
1814
|
+
"adler2",
|
|
1840
1815
|
]
|
|
1841
1816
|
|
|
1842
1817
|
[[package]]
|
|
1843
1818
|
name = "mio"
|
|
1844
|
-
version = "1.0.
|
|
1819
|
+
version = "1.0.4"
|
|
1845
1820
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1846
|
-
checksum = "
|
|
1821
|
+
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
|
|
1847
1822
|
dependencies = [
|
|
1848
|
-
"hermit-abi 0.3.9",
|
|
1849
1823
|
"libc",
|
|
1850
|
-
"wasi 0.11.
|
|
1851
|
-
"windows-sys 0.
|
|
1824
|
+
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
1825
|
+
"windows-sys 0.59.0",
|
|
1852
1826
|
]
|
|
1853
1827
|
|
|
1854
1828
|
[[package]]
|
|
1855
1829
|
name = "mockito"
|
|
1856
|
-
version = "1.
|
|
1830
|
+
version = "1.7.0"
|
|
1857
1831
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1858
|
-
checksum = "
|
|
1832
|
+
checksum = "7760e0e418d9b7e5777c0374009ca4c93861b9066f18cb334a20ce50ab63aa48"
|
|
1859
1833
|
dependencies = [
|
|
1860
1834
|
"assert-json-diff",
|
|
1861
1835
|
"bytes",
|
|
@@ -1867,7 +1841,7 @@ dependencies = [
|
|
|
1867
1841
|
"hyper",
|
|
1868
1842
|
"hyper-util",
|
|
1869
1843
|
"log",
|
|
1870
|
-
"rand",
|
|
1844
|
+
"rand 0.9.2",
|
|
1871
1845
|
"regex",
|
|
1872
1846
|
"serde_json",
|
|
1873
1847
|
"serde_urlencoded",
|
|
@@ -1933,18 +1907,24 @@ checksum = "17b02fc0ff9a9e4b35b3342880f48e896ebf69f2967921fe8646bf5b7125956a"
|
|
|
1933
1907
|
|
|
1934
1908
|
[[package]]
|
|
1935
1909
|
name = "object"
|
|
1936
|
-
version = "0.
|
|
1910
|
+
version = "0.37.3"
|
|
1937
1911
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1938
|
-
checksum = "
|
|
1912
|
+
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
|
|
1939
1913
|
dependencies = [
|
|
1940
1914
|
"memchr",
|
|
1941
1915
|
]
|
|
1942
1916
|
|
|
1943
1917
|
[[package]]
|
|
1944
1918
|
name = "once_cell"
|
|
1945
|
-
version = "1.
|
|
1919
|
+
version = "1.21.3"
|
|
1946
1920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1947
|
-
checksum = "
|
|
1921
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1922
|
+
|
|
1923
|
+
[[package]]
|
|
1924
|
+
name = "once_cell_polyfill"
|
|
1925
|
+
version = "1.70.1"
|
|
1926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1927
|
+
checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
|
|
1948
1928
|
|
|
1949
1929
|
[[package]]
|
|
1950
1930
|
name = "open"
|
|
@@ -1958,24 +1938,24 @@ dependencies = [
|
|
|
1958
1938
|
|
|
1959
1939
|
[[package]]
|
|
1960
1940
|
name = "openssl-probe"
|
|
1961
|
-
version = "0.1.
|
|
1941
|
+
version = "0.1.6"
|
|
1962
1942
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1963
|
-
checksum = "
|
|
1943
|
+
checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
|
|
1964
1944
|
|
|
1965
1945
|
[[package]]
|
|
1966
1946
|
name = "openssl-src"
|
|
1967
|
-
version = "300.
|
|
1947
|
+
version = "300.5.2+3.5.2"
|
|
1968
1948
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1969
|
-
checksum = "
|
|
1949
|
+
checksum = "d270b79e2926f5150189d475bc7e9d2c69f9c4697b185fa917d5a32b792d21b4"
|
|
1970
1950
|
dependencies = [
|
|
1971
1951
|
"cc",
|
|
1972
1952
|
]
|
|
1973
1953
|
|
|
1974
1954
|
[[package]]
|
|
1975
1955
|
name = "openssl-sys"
|
|
1976
|
-
version = "0.9.
|
|
1956
|
+
version = "0.9.109"
|
|
1977
1957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1978
|
-
checksum = "
|
|
1958
|
+
checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571"
|
|
1979
1959
|
dependencies = [
|
|
1980
1960
|
"cc",
|
|
1981
1961
|
"libc",
|
|
@@ -1996,23 +1976,24 @@ dependencies = [
|
|
|
1996
1976
|
|
|
1997
1977
|
[[package]]
|
|
1998
1978
|
name = "os_info"
|
|
1999
|
-
version = "3.
|
|
1979
|
+
version = "3.12.0"
|
|
2000
1980
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2001
|
-
checksum = "
|
|
1981
|
+
checksum = "d0e1ac5fde8d43c34139135df8ea9ee9465394b2d8d20f032d38998f64afffc3"
|
|
2002
1982
|
dependencies = [
|
|
2003
1983
|
"log",
|
|
1984
|
+
"plist",
|
|
2004
1985
|
"serde",
|
|
2005
1986
|
"windows-sys 0.52.0",
|
|
2006
1987
|
]
|
|
2007
1988
|
|
|
2008
1989
|
[[package]]
|
|
2009
1990
|
name = "os_pipe"
|
|
2010
|
-
version = "1.2.
|
|
1991
|
+
version = "1.2.2"
|
|
2011
1992
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2012
|
-
checksum = "
|
|
1993
|
+
checksum = "db335f4760b14ead6290116f2427bf33a14d4f0617d49f78a246de10c1831224"
|
|
2013
1994
|
dependencies = [
|
|
2014
1995
|
"libc",
|
|
2015
|
-
"windows-sys 0.
|
|
1996
|
+
"windows-sys 0.59.0",
|
|
2016
1997
|
]
|
|
2017
1998
|
|
|
2018
1999
|
[[package]]
|
|
@@ -2023,9 +2004,9 @@ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
|
2023
2004
|
|
|
2024
2005
|
[[package]]
|
|
2025
2006
|
name = "parking_lot"
|
|
2026
|
-
version = "0.12.
|
|
2007
|
+
version = "0.12.4"
|
|
2027
2008
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2028
|
-
checksum = "
|
|
2009
|
+
checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
|
|
2029
2010
|
dependencies = [
|
|
2030
2011
|
"lock_api",
|
|
2031
2012
|
"parking_lot_core",
|
|
@@ -2033,13 +2014,13 @@ dependencies = [
|
|
|
2033
2014
|
|
|
2034
2015
|
[[package]]
|
|
2035
2016
|
name = "parking_lot_core"
|
|
2036
|
-
version = "0.9.
|
|
2017
|
+
version = "0.9.11"
|
|
2037
2018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2038
|
-
checksum = "
|
|
2019
|
+
checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
|
|
2039
2020
|
dependencies = [
|
|
2040
2021
|
"cfg-if",
|
|
2041
2022
|
"libc",
|
|
2042
|
-
"redox_syscall
|
|
2023
|
+
"redox_syscall",
|
|
2043
2024
|
"smallvec",
|
|
2044
2025
|
"windows-targets 0.52.6",
|
|
2045
2026
|
]
|
|
@@ -2055,9 +2036,9 @@ dependencies = [
|
|
|
2055
2036
|
|
|
2056
2037
|
[[package]]
|
|
2057
2038
|
name = "pathdiff"
|
|
2058
|
-
version = "0.2.
|
|
2039
|
+
version = "0.2.3"
|
|
2059
2040
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2060
|
-
checksum = "
|
|
2041
|
+
checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
|
|
2061
2042
|
|
|
2062
2043
|
[[package]]
|
|
2063
2044
|
name = "pbkdf2"
|
|
@@ -2091,31 +2072,31 @@ dependencies = [
|
|
|
2091
2072
|
"maybe-owned",
|
|
2092
2073
|
"pdb",
|
|
2093
2074
|
"range-collections",
|
|
2094
|
-
"thiserror 1.0.
|
|
2075
|
+
"thiserror 1.0.69",
|
|
2095
2076
|
]
|
|
2096
2077
|
|
|
2097
2078
|
[[package]]
|
|
2098
2079
|
name = "percent-encoding"
|
|
2099
|
-
version = "2.3.
|
|
2080
|
+
version = "2.3.2"
|
|
2100
2081
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2101
|
-
checksum = "
|
|
2082
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
2102
2083
|
|
|
2103
2084
|
[[package]]
|
|
2104
2085
|
name = "pest"
|
|
2105
|
-
version = "2.
|
|
2086
|
+
version = "2.8.2"
|
|
2106
2087
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2107
|
-
checksum = "
|
|
2088
|
+
checksum = "21e0a3a33733faeaf8651dfee72dd0f388f0c8e5ad496a3478fa5a922f49cfa8"
|
|
2108
2089
|
dependencies = [
|
|
2109
2090
|
"memchr",
|
|
2110
|
-
"thiserror
|
|
2091
|
+
"thiserror 2.0.17",
|
|
2111
2092
|
"ucd-trie",
|
|
2112
2093
|
]
|
|
2113
2094
|
|
|
2114
2095
|
[[package]]
|
|
2115
2096
|
name = "pest_derive"
|
|
2116
|
-
version = "2.
|
|
2097
|
+
version = "2.8.2"
|
|
2117
2098
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2118
|
-
checksum = "
|
|
2099
|
+
checksum = "bc58706f770acb1dbd0973e6530a3cff4746fb721207feb3a8a6064cd0b6c663"
|
|
2119
2100
|
dependencies = [
|
|
2120
2101
|
"pest",
|
|
2121
2102
|
"pest_generator",
|
|
@@ -2123,9 +2104,9 @@ dependencies = [
|
|
|
2123
2104
|
|
|
2124
2105
|
[[package]]
|
|
2125
2106
|
name = "pest_generator"
|
|
2126
|
-
version = "2.
|
|
2107
|
+
version = "2.8.2"
|
|
2127
2108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2128
|
-
checksum = "
|
|
2109
|
+
checksum = "6d4f36811dfe07f7b8573462465d5cb8965fffc2e71ae377a33aecf14c2c9a2f"
|
|
2129
2110
|
dependencies = [
|
|
2130
2111
|
"pest",
|
|
2131
2112
|
"pest_meta",
|
|
@@ -2136,67 +2117,57 @@ dependencies = [
|
|
|
2136
2117
|
|
|
2137
2118
|
[[package]]
|
|
2138
2119
|
name = "pest_meta"
|
|
2139
|
-
version = "2.
|
|
2120
|
+
version = "2.8.2"
|
|
2140
2121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2141
|
-
checksum = "
|
|
2122
|
+
checksum = "42919b05089acbd0a5dcd5405fb304d17d1053847b81163d09c4ad18ce8e8420"
|
|
2142
2123
|
dependencies = [
|
|
2143
|
-
"once_cell",
|
|
2144
2124
|
"pest",
|
|
2145
2125
|
"sha2",
|
|
2146
2126
|
]
|
|
2147
2127
|
|
|
2148
2128
|
[[package]]
|
|
2149
2129
|
name = "phf"
|
|
2150
|
-
version = "0.11.
|
|
2130
|
+
version = "0.11.3"
|
|
2151
2131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2152
|
-
checksum = "
|
|
2132
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
2153
2133
|
dependencies = [
|
|
2154
|
-
"phf_shared
|
|
2134
|
+
"phf_shared",
|
|
2155
2135
|
]
|
|
2156
2136
|
|
|
2157
2137
|
[[package]]
|
|
2158
2138
|
name = "phf_codegen"
|
|
2159
|
-
version = "0.11.
|
|
2139
|
+
version = "0.11.3"
|
|
2160
2140
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2161
|
-
checksum = "
|
|
2141
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
2162
2142
|
dependencies = [
|
|
2163
2143
|
"phf_generator",
|
|
2164
|
-
"phf_shared
|
|
2144
|
+
"phf_shared",
|
|
2165
2145
|
]
|
|
2166
2146
|
|
|
2167
2147
|
[[package]]
|
|
2168
2148
|
name = "phf_generator"
|
|
2169
|
-
version = "0.11.
|
|
2170
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2171
|
-
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
|
|
2172
|
-
dependencies = [
|
|
2173
|
-
"phf_shared 0.11.2",
|
|
2174
|
-
"rand",
|
|
2175
|
-
]
|
|
2176
|
-
|
|
2177
|
-
[[package]]
|
|
2178
|
-
name = "phf_shared"
|
|
2179
|
-
version = "0.10.0"
|
|
2149
|
+
version = "0.11.3"
|
|
2180
2150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2181
|
-
checksum = "
|
|
2151
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
2182
2152
|
dependencies = [
|
|
2183
|
-
"
|
|
2153
|
+
"phf_shared",
|
|
2154
|
+
"rand 0.8.5",
|
|
2184
2155
|
]
|
|
2185
2156
|
|
|
2186
2157
|
[[package]]
|
|
2187
2158
|
name = "phf_shared"
|
|
2188
|
-
version = "0.11.
|
|
2159
|
+
version = "0.11.3"
|
|
2189
2160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2190
|
-
checksum = "
|
|
2161
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
2191
2162
|
dependencies = [
|
|
2192
2163
|
"siphasher",
|
|
2193
2164
|
]
|
|
2194
2165
|
|
|
2195
2166
|
[[package]]
|
|
2196
2167
|
name = "pin-project-lite"
|
|
2197
|
-
version = "0.2.
|
|
2168
|
+
version = "0.2.16"
|
|
2198
2169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2199
|
-
checksum = "
|
|
2170
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
2200
2171
|
|
|
2201
2172
|
[[package]]
|
|
2202
2173
|
name = "pin-utils"
|
|
@@ -2206,9 +2177,9 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
2206
2177
|
|
|
2207
2178
|
[[package]]
|
|
2208
2179
|
name = "pkg-config"
|
|
2209
|
-
version = "0.3.
|
|
2180
|
+
version = "0.3.32"
|
|
2210
2181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2211
|
-
checksum = "
|
|
2182
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2212
2183
|
|
|
2213
2184
|
[[package]]
|
|
2214
2185
|
name = "plain"
|
|
@@ -2218,9 +2189,9 @@ checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
|
|
|
2218
2189
|
|
|
2219
2190
|
[[package]]
|
|
2220
2191
|
name = "plist"
|
|
2221
|
-
version = "1.
|
|
2192
|
+
version = "1.8.0"
|
|
2222
2193
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2223
|
-
checksum = "
|
|
2194
|
+
checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07"
|
|
2224
2195
|
dependencies = [
|
|
2225
2196
|
"base64 0.22.1",
|
|
2226
2197
|
"indexmap",
|
|
@@ -2229,6 +2200,15 @@ dependencies = [
|
|
|
2229
2200
|
"time",
|
|
2230
2201
|
]
|
|
2231
2202
|
|
|
2203
|
+
[[package]]
|
|
2204
|
+
name = "potential_utf"
|
|
2205
|
+
version = "0.1.3"
|
|
2206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2207
|
+
checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
|
|
2208
|
+
dependencies = [
|
|
2209
|
+
"zerovec",
|
|
2210
|
+
]
|
|
2211
|
+
|
|
2232
2212
|
[[package]]
|
|
2233
2213
|
name = "powerfmt"
|
|
2234
2214
|
version = "0.2.0"
|
|
@@ -2237,9 +2217,12 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
|
2237
2217
|
|
|
2238
2218
|
[[package]]
|
|
2239
2219
|
name = "ppv-lite86"
|
|
2240
|
-
version = "0.2.
|
|
2220
|
+
version = "0.2.21"
|
|
2241
2221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2242
|
-
checksum = "
|
|
2222
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2223
|
+
dependencies = [
|
|
2224
|
+
"zerocopy",
|
|
2225
|
+
]
|
|
2243
2226
|
|
|
2244
2227
|
[[package]]
|
|
2245
2228
|
name = "precomputed-hash"
|
|
@@ -2249,9 +2232,9 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
|
2249
2232
|
|
|
2250
2233
|
[[package]]
|
|
2251
2234
|
name = "predicates"
|
|
2252
|
-
version = "3.1.
|
|
2235
|
+
version = "3.1.3"
|
|
2253
2236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2254
|
-
checksum = "
|
|
2237
|
+
checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
|
|
2255
2238
|
dependencies = [
|
|
2256
2239
|
"anstyle",
|
|
2257
2240
|
"difflib",
|
|
@@ -2260,15 +2243,15 @@ dependencies = [
|
|
|
2260
2243
|
|
|
2261
2244
|
[[package]]
|
|
2262
2245
|
name = "predicates-core"
|
|
2263
|
-
version = "1.0.
|
|
2246
|
+
version = "1.0.9"
|
|
2264
2247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2265
|
-
checksum = "
|
|
2248
|
+
checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
|
|
2266
2249
|
|
|
2267
2250
|
[[package]]
|
|
2268
2251
|
name = "predicates-tree"
|
|
2269
|
-
version = "1.0.
|
|
2252
|
+
version = "1.0.12"
|
|
2270
2253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2271
|
-
checksum = "
|
|
2254
|
+
checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
|
|
2272
2255
|
dependencies = [
|
|
2273
2256
|
"predicates-core",
|
|
2274
2257
|
"termtree",
|
|
@@ -2281,55 +2264,58 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2281
2264
|
checksum = "eea25e07510aa6ab6547308ebe3c036016d162b8da920dbb079e3ba8acf3d95a"
|
|
2282
2265
|
dependencies = [
|
|
2283
2266
|
"csv",
|
|
2284
|
-
"encode_unicode
|
|
2267
|
+
"encode_unicode",
|
|
2285
2268
|
"is-terminal",
|
|
2286
2269
|
"lazy_static",
|
|
2287
2270
|
"term",
|
|
2288
|
-
"unicode-width",
|
|
2271
|
+
"unicode-width 0.1.14",
|
|
2289
2272
|
]
|
|
2290
2273
|
|
|
2291
2274
|
[[package]]
|
|
2292
2275
|
name = "proc-macro2"
|
|
2293
|
-
version = "1.0.
|
|
2276
|
+
version = "1.0.101"
|
|
2294
2277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2295
|
-
checksum = "
|
|
2278
|
+
checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
|
|
2296
2279
|
dependencies = [
|
|
2297
2280
|
"unicode-ident",
|
|
2298
2281
|
]
|
|
2299
2282
|
|
|
2300
2283
|
[[package]]
|
|
2301
2284
|
name = "proguard"
|
|
2302
|
-
version = "5.
|
|
2285
|
+
version = "5.6.2"
|
|
2303
2286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2304
|
-
checksum = "
|
|
2287
|
+
checksum = "e40a6553b04a87f8efa9b559356dc9d6342b255307c8cf052ea09e93cd53a1bb"
|
|
2305
2288
|
dependencies = [
|
|
2306
|
-
"
|
|
2289
|
+
"serde",
|
|
2290
|
+
"serde_json",
|
|
2291
|
+
"thiserror 1.0.69",
|
|
2307
2292
|
"uuid",
|
|
2293
|
+
"watto",
|
|
2308
2294
|
]
|
|
2309
2295
|
|
|
2310
2296
|
[[package]]
|
|
2311
2297
|
name = "quick-xml"
|
|
2312
|
-
version = "0.
|
|
2298
|
+
version = "0.38.3"
|
|
2313
2299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2314
|
-
checksum = "
|
|
2300
|
+
checksum = "42a232e7487fc2ef313d96dde7948e7a3c05101870d8985e4fd8d26aedd27b89"
|
|
2315
2301
|
dependencies = [
|
|
2316
2302
|
"memchr",
|
|
2317
2303
|
]
|
|
2318
2304
|
|
|
2319
2305
|
[[package]]
|
|
2320
2306
|
name = "quote"
|
|
2321
|
-
version = "1.0.
|
|
2307
|
+
version = "1.0.41"
|
|
2322
2308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2323
|
-
checksum = "
|
|
2309
|
+
checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
|
|
2324
2310
|
dependencies = [
|
|
2325
2311
|
"proc-macro2",
|
|
2326
2312
|
]
|
|
2327
2313
|
|
|
2328
2314
|
[[package]]
|
|
2329
2315
|
name = "r-efi"
|
|
2330
|
-
version = "5.
|
|
2316
|
+
version = "5.3.0"
|
|
2331
2317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2332
|
-
checksum = "
|
|
2318
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2333
2319
|
|
|
2334
2320
|
[[package]]
|
|
2335
2321
|
name = "r2d2"
|
|
@@ -2355,8 +2341,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2355
2341
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2356
2342
|
dependencies = [
|
|
2357
2343
|
"libc",
|
|
2358
|
-
"rand_chacha",
|
|
2359
|
-
"rand_core",
|
|
2344
|
+
"rand_chacha 0.3.1",
|
|
2345
|
+
"rand_core 0.6.4",
|
|
2346
|
+
]
|
|
2347
|
+
|
|
2348
|
+
[[package]]
|
|
2349
|
+
name = "rand"
|
|
2350
|
+
version = "0.9.2"
|
|
2351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2352
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
2353
|
+
dependencies = [
|
|
2354
|
+
"rand_chacha 0.9.0",
|
|
2355
|
+
"rand_core 0.9.3",
|
|
2360
2356
|
]
|
|
2361
2357
|
|
|
2362
2358
|
[[package]]
|
|
@@ -2366,7 +2362,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2366
2362
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2367
2363
|
dependencies = [
|
|
2368
2364
|
"ppv-lite86",
|
|
2369
|
-
"rand_core",
|
|
2365
|
+
"rand_core 0.6.4",
|
|
2366
|
+
]
|
|
2367
|
+
|
|
2368
|
+
[[package]]
|
|
2369
|
+
name = "rand_chacha"
|
|
2370
|
+
version = "0.9.0"
|
|
2371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2372
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2373
|
+
dependencies = [
|
|
2374
|
+
"ppv-lite86",
|
|
2375
|
+
"rand_core 0.9.3",
|
|
2370
2376
|
]
|
|
2371
2377
|
|
|
2372
2378
|
[[package]]
|
|
@@ -2375,7 +2381,16 @@ version = "0.6.4"
|
|
|
2375
2381
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2376
2382
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2377
2383
|
dependencies = [
|
|
2378
|
-
"getrandom 0.2.
|
|
2384
|
+
"getrandom 0.2.16",
|
|
2385
|
+
]
|
|
2386
|
+
|
|
2387
|
+
[[package]]
|
|
2388
|
+
name = "rand_core"
|
|
2389
|
+
version = "0.9.3"
|
|
2390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2391
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
2392
|
+
dependencies = [
|
|
2393
|
+
"getrandom 0.3.3",
|
|
2379
2394
|
]
|
|
2380
2395
|
|
|
2381
2396
|
[[package]]
|
|
@@ -2391,9 +2406,9 @@ dependencies = [
|
|
|
2391
2406
|
|
|
2392
2407
|
[[package]]
|
|
2393
2408
|
name = "rayon"
|
|
2394
|
-
version = "1.
|
|
2409
|
+
version = "1.11.0"
|
|
2395
2410
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2396
|
-
checksum = "
|
|
2411
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
2397
2412
|
dependencies = [
|
|
2398
2413
|
"either",
|
|
2399
2414
|
"rayon-core",
|
|
@@ -2401,9 +2416,9 @@ dependencies = [
|
|
|
2401
2416
|
|
|
2402
2417
|
[[package]]
|
|
2403
2418
|
name = "rayon-core"
|
|
2404
|
-
version = "1.
|
|
2419
|
+
version = "1.13.0"
|
|
2405
2420
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2406
|
-
checksum = "
|
|
2421
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
2407
2422
|
dependencies = [
|
|
2408
2423
|
"crossbeam-deque",
|
|
2409
2424
|
"crossbeam-utils",
|
|
@@ -2411,38 +2426,29 @@ dependencies = [
|
|
|
2411
2426
|
|
|
2412
2427
|
[[package]]
|
|
2413
2428
|
name = "redox_syscall"
|
|
2414
|
-
version = "0.
|
|
2429
|
+
version = "0.5.17"
|
|
2415
2430
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2416
|
-
checksum = "
|
|
2431
|
+
checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
|
|
2417
2432
|
dependencies = [
|
|
2418
|
-
"bitflags
|
|
2419
|
-
]
|
|
2420
|
-
|
|
2421
|
-
[[package]]
|
|
2422
|
-
name = "redox_syscall"
|
|
2423
|
-
version = "0.5.2"
|
|
2424
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2425
|
-
checksum = "c82cf8cff14456045f55ec4241383baeff27af886adb72ffb2162f99911de0fd"
|
|
2426
|
-
dependencies = [
|
|
2427
|
-
"bitflags 2.6.0",
|
|
2433
|
+
"bitflags 2.9.4",
|
|
2428
2434
|
]
|
|
2429
2435
|
|
|
2430
2436
|
[[package]]
|
|
2431
2437
|
name = "redox_users"
|
|
2432
|
-
version = "0.4.
|
|
2438
|
+
version = "0.4.6"
|
|
2433
2439
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2434
|
-
checksum = "
|
|
2440
|
+
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
|
|
2435
2441
|
dependencies = [
|
|
2436
|
-
"getrandom 0.2.
|
|
2442
|
+
"getrandom 0.2.16",
|
|
2437
2443
|
"libredox",
|
|
2438
|
-
"thiserror 1.0.
|
|
2444
|
+
"thiserror 1.0.69",
|
|
2439
2445
|
]
|
|
2440
2446
|
|
|
2441
2447
|
[[package]]
|
|
2442
2448
|
name = "regex"
|
|
2443
|
-
version = "1.
|
|
2449
|
+
version = "1.11.3"
|
|
2444
2450
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2445
|
-
checksum = "
|
|
2451
|
+
checksum = "8b5288124840bee7b386bc413c487869b360b2b4ec421ea56425128692f2a82c"
|
|
2446
2452
|
dependencies = [
|
|
2447
2453
|
"aho-corasick",
|
|
2448
2454
|
"memchr",
|
|
@@ -2452,9 +2458,9 @@ dependencies = [
|
|
|
2452
2458
|
|
|
2453
2459
|
[[package]]
|
|
2454
2460
|
name = "regex-automata"
|
|
2455
|
-
version = "0.4.
|
|
2461
|
+
version = "0.4.11"
|
|
2456
2462
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2457
|
-
checksum = "
|
|
2463
|
+
checksum = "833eb9ce86d40ef33cb1306d8accf7bc8ec2bfea4355cbdebb3df68b40925cad"
|
|
2458
2464
|
dependencies = [
|
|
2459
2465
|
"aho-corasick",
|
|
2460
2466
|
"memchr",
|
|
@@ -2463,9 +2469,9 @@ dependencies = [
|
|
|
2463
2469
|
|
|
2464
2470
|
[[package]]
|
|
2465
2471
|
name = "regex-syntax"
|
|
2466
|
-
version = "0.8.
|
|
2472
|
+
version = "0.8.6"
|
|
2467
2473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2468
|
-
checksum = "
|
|
2474
|
+
checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
|
|
2469
2475
|
|
|
2470
2476
|
[[package]]
|
|
2471
2477
|
name = "relative-path"
|
|
@@ -2526,9 +2532,9 @@ dependencies = [
|
|
|
2526
2532
|
|
|
2527
2533
|
[[package]]
|
|
2528
2534
|
name = "rustc-demangle"
|
|
2529
|
-
version = "0.1.
|
|
2535
|
+
version = "0.1.26"
|
|
2530
2536
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2531
|
-
checksum = "
|
|
2537
|
+
checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
|
|
2532
2538
|
|
|
2533
2539
|
[[package]]
|
|
2534
2540
|
name = "rustc-hash"
|
|
@@ -2538,37 +2544,50 @@ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
|
2538
2544
|
|
|
2539
2545
|
[[package]]
|
|
2540
2546
|
name = "rustc_version"
|
|
2541
|
-
version = "0.4.
|
|
2547
|
+
version = "0.4.1"
|
|
2542
2548
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2543
|
-
checksum = "
|
|
2549
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2544
2550
|
dependencies = [
|
|
2545
2551
|
"semver",
|
|
2546
2552
|
]
|
|
2547
2553
|
|
|
2548
2554
|
[[package]]
|
|
2549
2555
|
name = "rustix"
|
|
2550
|
-
version = "0.38.
|
|
2556
|
+
version = "0.38.44"
|
|
2551
2557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2552
|
-
checksum = "
|
|
2558
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
2553
2559
|
dependencies = [
|
|
2554
|
-
"bitflags 2.
|
|
2560
|
+
"bitflags 2.9.4",
|
|
2555
2561
|
"errno",
|
|
2556
2562
|
"libc",
|
|
2557
|
-
"linux-raw-sys",
|
|
2558
|
-
"windows-sys 0.
|
|
2563
|
+
"linux-raw-sys 0.4.15",
|
|
2564
|
+
"windows-sys 0.59.0",
|
|
2565
|
+
]
|
|
2566
|
+
|
|
2567
|
+
[[package]]
|
|
2568
|
+
name = "rustix"
|
|
2569
|
+
version = "1.1.2"
|
|
2570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2571
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
2572
|
+
dependencies = [
|
|
2573
|
+
"bitflags 2.9.4",
|
|
2574
|
+
"errno",
|
|
2575
|
+
"libc",
|
|
2576
|
+
"linux-raw-sys 0.11.0",
|
|
2577
|
+
"windows-sys 0.61.1",
|
|
2559
2578
|
]
|
|
2560
2579
|
|
|
2561
2580
|
[[package]]
|
|
2562
2581
|
name = "rustversion"
|
|
2563
|
-
version = "1.0.
|
|
2582
|
+
version = "1.0.22"
|
|
2564
2583
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2565
|
-
checksum = "
|
|
2584
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2566
2585
|
|
|
2567
2586
|
[[package]]
|
|
2568
2587
|
name = "ryu"
|
|
2569
|
-
version = "1.0.
|
|
2588
|
+
version = "1.0.20"
|
|
2570
2589
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2571
|
-
checksum = "
|
|
2590
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
2572
2591
|
|
|
2573
2592
|
[[package]]
|
|
2574
2593
|
name = "same-file"
|
|
@@ -2579,13 +2598,22 @@ dependencies = [
|
|
|
2579
2598
|
"winapi-util",
|
|
2580
2599
|
]
|
|
2581
2600
|
|
|
2601
|
+
[[package]]
|
|
2602
|
+
name = "scc"
|
|
2603
|
+
version = "2.4.0"
|
|
2604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2605
|
+
checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc"
|
|
2606
|
+
dependencies = [
|
|
2607
|
+
"sdd",
|
|
2608
|
+
]
|
|
2609
|
+
|
|
2582
2610
|
[[package]]
|
|
2583
2611
|
name = "schannel"
|
|
2584
|
-
version = "0.1.
|
|
2612
|
+
version = "0.1.28"
|
|
2585
2613
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2586
|
-
checksum = "
|
|
2614
|
+
checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
|
|
2587
2615
|
dependencies = [
|
|
2588
|
-
"windows-sys 0.
|
|
2616
|
+
"windows-sys 0.61.1",
|
|
2589
2617
|
]
|
|
2590
2618
|
|
|
2591
2619
|
[[package]]
|
|
@@ -2620,15 +2648,21 @@ dependencies = [
|
|
|
2620
2648
|
|
|
2621
2649
|
[[package]]
|
|
2622
2650
|
name = "scroll_derive"
|
|
2623
|
-
version = "0.12.
|
|
2651
|
+
version = "0.12.1"
|
|
2624
2652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2625
|
-
checksum = "
|
|
2653
|
+
checksum = "1783eabc414609e28a5ba76aee5ddd52199f7107a0b24c2e9746a1ecc34a683d"
|
|
2626
2654
|
dependencies = [
|
|
2627
2655
|
"proc-macro2",
|
|
2628
2656
|
"quote",
|
|
2629
2657
|
"syn",
|
|
2630
2658
|
]
|
|
2631
2659
|
|
|
2660
|
+
[[package]]
|
|
2661
|
+
name = "sdd"
|
|
2662
|
+
version = "3.0.10"
|
|
2663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2664
|
+
checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
|
|
2665
|
+
|
|
2632
2666
|
[[package]]
|
|
2633
2667
|
name = "secrecy"
|
|
2634
2668
|
version = "0.8.0"
|
|
@@ -2640,9 +2674,9 @@ dependencies = [
|
|
|
2640
2674
|
|
|
2641
2675
|
[[package]]
|
|
2642
2676
|
name = "security-framework-sys"
|
|
2643
|
-
version = "2.
|
|
2677
|
+
version = "2.15.0"
|
|
2644
2678
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2645
|
-
checksum = "
|
|
2679
|
+
checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
|
|
2646
2680
|
dependencies = [
|
|
2647
2681
|
"core-foundation-sys",
|
|
2648
2682
|
"libc",
|
|
@@ -2650,9 +2684,9 @@ dependencies = [
|
|
|
2650
2684
|
|
|
2651
2685
|
[[package]]
|
|
2652
2686
|
name = "semver"
|
|
2653
|
-
version = "1.0.
|
|
2687
|
+
version = "1.0.27"
|
|
2654
2688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2655
|
-
checksum = "
|
|
2689
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
2656
2690
|
|
|
2657
2691
|
[[package]]
|
|
2658
2692
|
name = "sentry"
|
|
@@ -2692,20 +2726,20 @@ dependencies = [
|
|
|
2692
2726
|
|
|
2693
2727
|
[[package]]
|
|
2694
2728
|
name = "sentry-cli"
|
|
2695
|
-
version = "2.
|
|
2729
|
+
version = "2.57.0"
|
|
2696
2730
|
dependencies = [
|
|
2697
2731
|
"anyhow",
|
|
2698
2732
|
"anylog",
|
|
2699
2733
|
"apple-catalog-parsing",
|
|
2700
2734
|
"assert_cmd",
|
|
2701
|
-
"
|
|
2702
|
-
"
|
|
2735
|
+
"backon",
|
|
2736
|
+
"brotli",
|
|
2703
2737
|
"bytecount",
|
|
2704
2738
|
"chrono",
|
|
2705
2739
|
"chrono-tz",
|
|
2706
2740
|
"clap",
|
|
2707
2741
|
"clap_complete",
|
|
2708
|
-
"console",
|
|
2742
|
+
"console 0.15.11",
|
|
2709
2743
|
"curl",
|
|
2710
2744
|
"data-encoding",
|
|
2711
2745
|
"dirs",
|
|
@@ -2723,6 +2757,7 @@ dependencies = [
|
|
|
2723
2757
|
"lazy_static",
|
|
2724
2758
|
"libc",
|
|
2725
2759
|
"log",
|
|
2760
|
+
"lru",
|
|
2726
2761
|
"mac-process-info",
|
|
2727
2762
|
"magic_string",
|
|
2728
2763
|
"mockito",
|
|
@@ -2744,11 +2779,12 @@ dependencies = [
|
|
|
2744
2779
|
"sentry",
|
|
2745
2780
|
"serde",
|
|
2746
2781
|
"serde_json",
|
|
2782
|
+
"serial_test",
|
|
2747
2783
|
"sha1_smol",
|
|
2748
2784
|
"sourcemap",
|
|
2749
2785
|
"symbolic",
|
|
2750
2786
|
"tempfile",
|
|
2751
|
-
"thiserror 1.0.
|
|
2787
|
+
"thiserror 1.0.69",
|
|
2752
2788
|
"trycmd",
|
|
2753
2789
|
"url",
|
|
2754
2790
|
"uuid",
|
|
@@ -2781,7 +2817,7 @@ checksum = "161283cfe8e99c8f6f236a402b9ccf726b201f365988b5bb637ebca0abbd4a30"
|
|
|
2781
2817
|
dependencies = [
|
|
2782
2818
|
"crc32fast",
|
|
2783
2819
|
"once_cell",
|
|
2784
|
-
"rand",
|
|
2820
|
+
"rand 0.8.5",
|
|
2785
2821
|
"regex",
|
|
2786
2822
|
"sentry-types",
|
|
2787
2823
|
"serde",
|
|
@@ -2796,10 +2832,10 @@ checksum = "5d68cdf6bc41b8ff3ae2a9c4671e97426dcdd154cc1d4b6b72813f285d6b163f"
|
|
|
2796
2832
|
dependencies = [
|
|
2797
2833
|
"debugid",
|
|
2798
2834
|
"hex",
|
|
2799
|
-
"rand",
|
|
2835
|
+
"rand 0.8.5",
|
|
2800
2836
|
"serde",
|
|
2801
2837
|
"serde_json",
|
|
2802
|
-
"thiserror 1.0.
|
|
2838
|
+
"thiserror 1.0.69",
|
|
2803
2839
|
"time",
|
|
2804
2840
|
"url",
|
|
2805
2841
|
"uuid",
|
|
@@ -2807,18 +2843,28 @@ dependencies = [
|
|
|
2807
2843
|
|
|
2808
2844
|
[[package]]
|
|
2809
2845
|
name = "serde"
|
|
2810
|
-
version = "1.0.
|
|
2846
|
+
version = "1.0.228"
|
|
2847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2848
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2849
|
+
dependencies = [
|
|
2850
|
+
"serde_core",
|
|
2851
|
+
"serde_derive",
|
|
2852
|
+
]
|
|
2853
|
+
|
|
2854
|
+
[[package]]
|
|
2855
|
+
name = "serde_core"
|
|
2856
|
+
version = "1.0.228"
|
|
2811
2857
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2812
|
-
checksum = "
|
|
2858
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2813
2859
|
dependencies = [
|
|
2814
2860
|
"serde_derive",
|
|
2815
2861
|
]
|
|
2816
2862
|
|
|
2817
2863
|
[[package]]
|
|
2818
2864
|
name = "serde_derive"
|
|
2819
|
-
version = "1.0.
|
|
2865
|
+
version = "1.0.228"
|
|
2820
2866
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2821
|
-
checksum = "
|
|
2867
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2822
2868
|
dependencies = [
|
|
2823
2869
|
"proc-macro2",
|
|
2824
2870
|
"quote",
|
|
@@ -2827,20 +2873,22 @@ dependencies = [
|
|
|
2827
2873
|
|
|
2828
2874
|
[[package]]
|
|
2829
2875
|
name = "serde_json"
|
|
2830
|
-
version = "1.0.
|
|
2876
|
+
version = "1.0.145"
|
|
2831
2877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2832
|
-
checksum = "
|
|
2878
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
2833
2879
|
dependencies = [
|
|
2834
2880
|
"itoa",
|
|
2881
|
+
"memchr",
|
|
2835
2882
|
"ryu",
|
|
2836
2883
|
"serde",
|
|
2884
|
+
"serde_core",
|
|
2837
2885
|
]
|
|
2838
2886
|
|
|
2839
2887
|
[[package]]
|
|
2840
2888
|
name = "serde_spanned"
|
|
2841
|
-
version = "0.6.
|
|
2889
|
+
version = "0.6.9"
|
|
2842
2890
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2843
|
-
checksum = "
|
|
2891
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
2844
2892
|
dependencies = [
|
|
2845
2893
|
"serde",
|
|
2846
2894
|
]
|
|
@@ -2857,6 +2905,31 @@ dependencies = [
|
|
|
2857
2905
|
"serde",
|
|
2858
2906
|
]
|
|
2859
2907
|
|
|
2908
|
+
[[package]]
|
|
2909
|
+
name = "serial_test"
|
|
2910
|
+
version = "3.2.0"
|
|
2911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2912
|
+
checksum = "1b258109f244e1d6891bf1053a55d63a5cd4f8f4c30cf9a1280989f80e7a1fa9"
|
|
2913
|
+
dependencies = [
|
|
2914
|
+
"futures",
|
|
2915
|
+
"log",
|
|
2916
|
+
"once_cell",
|
|
2917
|
+
"parking_lot",
|
|
2918
|
+
"scc",
|
|
2919
|
+
"serial_test_derive",
|
|
2920
|
+
]
|
|
2921
|
+
|
|
2922
|
+
[[package]]
|
|
2923
|
+
name = "serial_test_derive"
|
|
2924
|
+
version = "3.2.0"
|
|
2925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2926
|
+
checksum = "5d69265a08751de7844521fd15003ae0a888e035773ba05695c5c759a6f89eef"
|
|
2927
|
+
dependencies = [
|
|
2928
|
+
"proc-macro2",
|
|
2929
|
+
"quote",
|
|
2930
|
+
"syn",
|
|
2931
|
+
]
|
|
2932
|
+
|
|
2860
2933
|
[[package]]
|
|
2861
2934
|
name = "sha1"
|
|
2862
2935
|
version = "0.10.6"
|
|
@@ -2870,18 +2943,18 @@ dependencies = [
|
|
|
2870
2943
|
|
|
2871
2944
|
[[package]]
|
|
2872
2945
|
name = "sha1_smol"
|
|
2873
|
-
version = "1.0.
|
|
2946
|
+
version = "1.0.1"
|
|
2874
2947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2875
|
-
checksum = "
|
|
2948
|
+
checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
|
|
2876
2949
|
dependencies = [
|
|
2877
2950
|
"serde",
|
|
2878
2951
|
]
|
|
2879
2952
|
|
|
2880
2953
|
[[package]]
|
|
2881
2954
|
name = "sha2"
|
|
2882
|
-
version = "0.10.
|
|
2955
|
+
version = "0.10.9"
|
|
2883
2956
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2884
|
-
checksum = "
|
|
2957
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
2885
2958
|
dependencies = [
|
|
2886
2959
|
"cfg-if",
|
|
2887
2960
|
"cpufeatures",
|
|
@@ -2902,30 +2975,27 @@ checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
|
2902
2975
|
|
|
2903
2976
|
[[package]]
|
|
2904
2977
|
name = "similar"
|
|
2905
|
-
version = "2.
|
|
2978
|
+
version = "2.7.0"
|
|
2906
2979
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2907
|
-
checksum = "
|
|
2980
|
+
checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
|
|
2908
2981
|
|
|
2909
2982
|
[[package]]
|
|
2910
2983
|
name = "siphasher"
|
|
2911
|
-
version = "0.
|
|
2984
|
+
version = "1.0.1"
|
|
2912
2985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2913
|
-
checksum = "
|
|
2986
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
2914
2987
|
|
|
2915
2988
|
[[package]]
|
|
2916
2989
|
name = "slab"
|
|
2917
|
-
version = "0.4.
|
|
2990
|
+
version = "0.4.11"
|
|
2918
2991
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2919
|
-
checksum = "
|
|
2920
|
-
dependencies = [
|
|
2921
|
-
"autocfg",
|
|
2922
|
-
]
|
|
2992
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
2923
2993
|
|
|
2924
2994
|
[[package]]
|
|
2925
2995
|
name = "smallvec"
|
|
2926
|
-
version = "1.
|
|
2996
|
+
version = "1.15.1"
|
|
2927
2997
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2928
|
-
checksum = "
|
|
2998
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2929
2999
|
|
|
2930
3000
|
[[package]]
|
|
2931
3001
|
name = "snapbox"
|
|
@@ -2951,28 +3021,28 @@ dependencies = [
|
|
|
2951
3021
|
|
|
2952
3022
|
[[package]]
|
|
2953
3023
|
name = "snapbox-macros"
|
|
2954
|
-
version = "0.3.
|
|
3024
|
+
version = "0.3.10"
|
|
2955
3025
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2956
|
-
checksum = "
|
|
3026
|
+
checksum = "16569f53ca23a41bb6f62e0a5084aa1661f4814a67fa33696a79073e03a664af"
|
|
2957
3027
|
dependencies = [
|
|
2958
3028
|
"anstream",
|
|
2959
3029
|
]
|
|
2960
3030
|
|
|
2961
3031
|
[[package]]
|
|
2962
3032
|
name = "socket2"
|
|
2963
|
-
version = "0.
|
|
3033
|
+
version = "0.6.0"
|
|
2964
3034
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2965
|
-
checksum = "
|
|
3035
|
+
checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
|
|
2966
3036
|
dependencies = [
|
|
2967
3037
|
"libc",
|
|
2968
|
-
"windows-sys 0.
|
|
3038
|
+
"windows-sys 0.59.0",
|
|
2969
3039
|
]
|
|
2970
3040
|
|
|
2971
3041
|
[[package]]
|
|
2972
3042
|
name = "sourcemap"
|
|
2973
|
-
version = "9.2.
|
|
3043
|
+
version = "9.2.2"
|
|
2974
3044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2975
|
-
checksum = "
|
|
3045
|
+
checksum = "e22afbcb92ce02d23815b9795523c005cb9d3c214f8b7a66318541c240ea7935"
|
|
2976
3046
|
dependencies = [
|
|
2977
3047
|
"base64-simd",
|
|
2978
3048
|
"bitvec",
|
|
@@ -2995,14 +3065,13 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
|
2995
3065
|
|
|
2996
3066
|
[[package]]
|
|
2997
3067
|
name = "string_cache"
|
|
2998
|
-
version = "0.8.
|
|
3068
|
+
version = "0.8.9"
|
|
2999
3069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3000
|
-
checksum = "
|
|
3070
|
+
checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
|
|
3001
3071
|
dependencies = [
|
|
3002
3072
|
"new_debug_unreachable",
|
|
3003
|
-
"once_cell",
|
|
3004
3073
|
"parking_lot",
|
|
3005
|
-
"phf_shared
|
|
3074
|
+
"phf_shared",
|
|
3006
3075
|
"precomputed-hash",
|
|
3007
3076
|
"serde",
|
|
3008
3077
|
]
|
|
@@ -3021,9 +3090,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
3021
3090
|
|
|
3022
3091
|
[[package]]
|
|
3023
3092
|
name = "symbolic"
|
|
3024
|
-
version = "12.
|
|
3093
|
+
version = "12.16.3"
|
|
3025
3094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3026
|
-
checksum = "
|
|
3095
|
+
checksum = "39491f196401cfa42c44c12d18b6c2e4dc27f404b3adedc0b461dae049711886"
|
|
3027
3096
|
dependencies = [
|
|
3028
3097
|
"symbolic-common",
|
|
3029
3098
|
"symbolic-debuginfo",
|
|
@@ -3033,9 +3102,9 @@ dependencies = [
|
|
|
3033
3102
|
|
|
3034
3103
|
[[package]]
|
|
3035
3104
|
name = "symbolic-common"
|
|
3036
|
-
version = "12.
|
|
3105
|
+
version = "12.16.3"
|
|
3037
3106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3038
|
-
checksum = "
|
|
3107
|
+
checksum = "d03f433c9befeea460a01d750e698aa86caf86dcfbd77d552885cd6c89d52f50"
|
|
3039
3108
|
dependencies = [
|
|
3040
3109
|
"debugid",
|
|
3041
3110
|
"memmap2",
|
|
@@ -3046,16 +3115,16 @@ dependencies = [
|
|
|
3046
3115
|
|
|
3047
3116
|
[[package]]
|
|
3048
3117
|
name = "symbolic-debuginfo"
|
|
3049
|
-
version = "12.
|
|
3118
|
+
version = "12.16.3"
|
|
3050
3119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3051
|
-
checksum = "
|
|
3120
|
+
checksum = "503aacdde371090f23ba8c57a8f8d8cb2ba99370e8259d76f134a7d3e18b4458"
|
|
3052
3121
|
dependencies = [
|
|
3053
3122
|
"debugid",
|
|
3054
3123
|
"elementtree",
|
|
3055
3124
|
"elsa",
|
|
3056
3125
|
"fallible-iterator 0.3.0",
|
|
3057
3126
|
"flate2",
|
|
3058
|
-
"gimli
|
|
3127
|
+
"gimli",
|
|
3059
3128
|
"goblin",
|
|
3060
3129
|
"lazy_static",
|
|
3061
3130
|
"nom",
|
|
@@ -3070,7 +3139,7 @@ dependencies = [
|
|
|
3070
3139
|
"smallvec",
|
|
3071
3140
|
"symbolic-common",
|
|
3072
3141
|
"symbolic-ppdb",
|
|
3073
|
-
"thiserror 1.0.
|
|
3142
|
+
"thiserror 1.0.69",
|
|
3074
3143
|
"wasmparser",
|
|
3075
3144
|
"zip",
|
|
3076
3145
|
"zstd",
|
|
@@ -3078,9 +3147,9 @@ dependencies = [
|
|
|
3078
3147
|
|
|
3079
3148
|
[[package]]
|
|
3080
3149
|
name = "symbolic-il2cpp"
|
|
3081
|
-
version = "12.
|
|
3150
|
+
version = "12.16.3"
|
|
3082
3151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3083
|
-
checksum = "
|
|
3152
|
+
checksum = "9a5b93b594f1b7085d1b60d0f013cca52bcb7cc2aaf72f7ca0a05153989b2d9d"
|
|
3084
3153
|
dependencies = [
|
|
3085
3154
|
"indexmap",
|
|
3086
3155
|
"serde_json",
|
|
@@ -3090,40 +3159,40 @@ dependencies = [
|
|
|
3090
3159
|
|
|
3091
3160
|
[[package]]
|
|
3092
3161
|
name = "symbolic-ppdb"
|
|
3093
|
-
version = "12.
|
|
3162
|
+
version = "12.16.3"
|
|
3094
3163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3095
|
-
checksum = "
|
|
3164
|
+
checksum = "dde25496951966c75ca9ee9213bcdd853fe0db6a4cbcc8d0d097104a899c10df"
|
|
3096
3165
|
dependencies = [
|
|
3097
3166
|
"flate2",
|
|
3098
3167
|
"indexmap",
|
|
3099
3168
|
"serde",
|
|
3100
3169
|
"serde_json",
|
|
3101
3170
|
"symbolic-common",
|
|
3102
|
-
"thiserror 1.0.
|
|
3171
|
+
"thiserror 1.0.69",
|
|
3103
3172
|
"uuid",
|
|
3104
3173
|
"watto",
|
|
3105
3174
|
]
|
|
3106
3175
|
|
|
3107
3176
|
[[package]]
|
|
3108
3177
|
name = "symbolic-symcache"
|
|
3109
|
-
version = "12.
|
|
3178
|
+
version = "12.16.3"
|
|
3110
3179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3111
|
-
checksum = "
|
|
3180
|
+
checksum = "9884c1e755776d65646d5300736373fe20739432a673d648a68b7464a9bb2e9b"
|
|
3112
3181
|
dependencies = [
|
|
3113
3182
|
"indexmap",
|
|
3114
3183
|
"symbolic-common",
|
|
3115
3184
|
"symbolic-debuginfo",
|
|
3116
3185
|
"symbolic-il2cpp",
|
|
3117
|
-
"thiserror 1.0.
|
|
3186
|
+
"thiserror 1.0.69",
|
|
3118
3187
|
"tracing",
|
|
3119
3188
|
"watto",
|
|
3120
3189
|
]
|
|
3121
3190
|
|
|
3122
3191
|
[[package]]
|
|
3123
3192
|
name = "syn"
|
|
3124
|
-
version = "2.0.
|
|
3193
|
+
version = "2.0.106"
|
|
3125
3194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3126
|
-
checksum = "
|
|
3195
|
+
checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
|
|
3127
3196
|
dependencies = [
|
|
3128
3197
|
"proc-macro2",
|
|
3129
3198
|
"quote",
|
|
@@ -3132,9 +3201,9 @@ dependencies = [
|
|
|
3132
3201
|
|
|
3133
3202
|
[[package]]
|
|
3134
3203
|
name = "synstructure"
|
|
3135
|
-
version = "0.13.
|
|
3204
|
+
version = "0.13.2"
|
|
3136
3205
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3137
|
-
checksum = "
|
|
3206
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
3138
3207
|
dependencies = [
|
|
3139
3208
|
"proc-macro2",
|
|
3140
3209
|
"quote",
|
|
@@ -3149,14 +3218,15 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
|
3149
3218
|
|
|
3150
3219
|
[[package]]
|
|
3151
3220
|
name = "tempfile"
|
|
3152
|
-
version = "3.
|
|
3221
|
+
version = "3.23.0"
|
|
3153
3222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3154
|
-
checksum = "
|
|
3223
|
+
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
3155
3224
|
dependencies = [
|
|
3156
|
-
"cfg-if",
|
|
3157
3225
|
"fastrand",
|
|
3158
|
-
"
|
|
3159
|
-
"
|
|
3226
|
+
"getrandom 0.3.3",
|
|
3227
|
+
"once_cell",
|
|
3228
|
+
"rustix 1.1.2",
|
|
3229
|
+
"windows-sys 0.61.1",
|
|
3160
3230
|
]
|
|
3161
3231
|
|
|
3162
3232
|
[[package]]
|
|
@@ -3172,43 +3242,43 @@ dependencies = [
|
|
|
3172
3242
|
|
|
3173
3243
|
[[package]]
|
|
3174
3244
|
name = "terminal_size"
|
|
3175
|
-
version = "0.3
|
|
3245
|
+
version = "0.4.3"
|
|
3176
3246
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3177
|
-
checksum = "
|
|
3247
|
+
checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0"
|
|
3178
3248
|
dependencies = [
|
|
3179
|
-
"rustix",
|
|
3180
|
-
"windows-sys 0.
|
|
3249
|
+
"rustix 1.1.2",
|
|
3250
|
+
"windows-sys 0.60.2",
|
|
3181
3251
|
]
|
|
3182
3252
|
|
|
3183
3253
|
[[package]]
|
|
3184
3254
|
name = "termtree"
|
|
3185
|
-
version = "0.
|
|
3255
|
+
version = "0.5.1"
|
|
3186
3256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3187
|
-
checksum = "
|
|
3257
|
+
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
3188
3258
|
|
|
3189
3259
|
[[package]]
|
|
3190
3260
|
name = "thiserror"
|
|
3191
|
-
version = "1.0.
|
|
3261
|
+
version = "1.0.69"
|
|
3192
3262
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3193
|
-
checksum = "
|
|
3263
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
3194
3264
|
dependencies = [
|
|
3195
|
-
"thiserror-impl 1.0.
|
|
3265
|
+
"thiserror-impl 1.0.69",
|
|
3196
3266
|
]
|
|
3197
3267
|
|
|
3198
3268
|
[[package]]
|
|
3199
3269
|
name = "thiserror"
|
|
3200
|
-
version = "2.0.
|
|
3270
|
+
version = "2.0.17"
|
|
3201
3271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3202
|
-
checksum = "
|
|
3272
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
3203
3273
|
dependencies = [
|
|
3204
|
-
"thiserror-impl 2.0.
|
|
3274
|
+
"thiserror-impl 2.0.17",
|
|
3205
3275
|
]
|
|
3206
3276
|
|
|
3207
3277
|
[[package]]
|
|
3208
3278
|
name = "thiserror-impl"
|
|
3209
|
-
version = "1.0.
|
|
3279
|
+
version = "1.0.69"
|
|
3210
3280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3211
|
-
checksum = "
|
|
3281
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
3212
3282
|
dependencies = [
|
|
3213
3283
|
"proc-macro2",
|
|
3214
3284
|
"quote",
|
|
@@ -3217,9 +3287,9 @@ dependencies = [
|
|
|
3217
3287
|
|
|
3218
3288
|
[[package]]
|
|
3219
3289
|
name = "thiserror-impl"
|
|
3220
|
-
version = "2.0.
|
|
3290
|
+
version = "2.0.17"
|
|
3221
3291
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3222
|
-
checksum = "
|
|
3292
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
3223
3293
|
dependencies = [
|
|
3224
3294
|
"proc-macro2",
|
|
3225
3295
|
"quote",
|
|
@@ -3228,9 +3298,9 @@ dependencies = [
|
|
|
3228
3298
|
|
|
3229
3299
|
[[package]]
|
|
3230
3300
|
name = "time"
|
|
3231
|
-
version = "0.3.
|
|
3301
|
+
version = "0.3.44"
|
|
3232
3302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3233
|
-
checksum = "
|
|
3303
|
+
checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
|
|
3234
3304
|
dependencies = [
|
|
3235
3305
|
"deranged",
|
|
3236
3306
|
"itoa",
|
|
@@ -3243,15 +3313,15 @@ dependencies = [
|
|
|
3243
3313
|
|
|
3244
3314
|
[[package]]
|
|
3245
3315
|
name = "time-core"
|
|
3246
|
-
version = "0.1.
|
|
3316
|
+
version = "0.1.6"
|
|
3247
3317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3248
|
-
checksum = "
|
|
3318
|
+
checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
|
|
3249
3319
|
|
|
3250
3320
|
[[package]]
|
|
3251
3321
|
name = "time-macros"
|
|
3252
|
-
version = "0.2.
|
|
3322
|
+
version = "0.2.24"
|
|
3253
3323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3254
|
-
checksum = "
|
|
3324
|
+
checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
|
|
3255
3325
|
dependencies = [
|
|
3256
3326
|
"num-conv",
|
|
3257
3327
|
"time-core",
|
|
@@ -3259,9 +3329,9 @@ dependencies = [
|
|
|
3259
3329
|
|
|
3260
3330
|
[[package]]
|
|
3261
3331
|
name = "tinystr"
|
|
3262
|
-
version = "0.
|
|
3332
|
+
version = "0.8.1"
|
|
3263
3333
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3264
|
-
checksum = "
|
|
3334
|
+
checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
|
|
3265
3335
|
dependencies = [
|
|
3266
3336
|
"displaydoc",
|
|
3267
3337
|
"zerovec",
|
|
@@ -3269,25 +3339,27 @@ dependencies = [
|
|
|
3269
3339
|
|
|
3270
3340
|
[[package]]
|
|
3271
3341
|
name = "tokio"
|
|
3272
|
-
version = "1.
|
|
3342
|
+
version = "1.47.1"
|
|
3273
3343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3274
|
-
checksum = "
|
|
3344
|
+
checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038"
|
|
3275
3345
|
dependencies = [
|
|
3276
3346
|
"backtrace",
|
|
3277
3347
|
"bytes",
|
|
3348
|
+
"io-uring",
|
|
3278
3349
|
"libc",
|
|
3279
3350
|
"mio",
|
|
3280
3351
|
"parking_lot",
|
|
3281
3352
|
"pin-project-lite",
|
|
3353
|
+
"slab",
|
|
3282
3354
|
"socket2",
|
|
3283
|
-
"windows-sys 0.
|
|
3355
|
+
"windows-sys 0.59.0",
|
|
3284
3356
|
]
|
|
3285
3357
|
|
|
3286
3358
|
[[package]]
|
|
3287
3359
|
name = "tokio-util"
|
|
3288
|
-
version = "0.7.
|
|
3360
|
+
version = "0.7.16"
|
|
3289
3361
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3290
|
-
checksum = "
|
|
3362
|
+
checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
|
|
3291
3363
|
dependencies = [
|
|
3292
3364
|
"bytes",
|
|
3293
3365
|
"futures-core",
|
|
@@ -3298,31 +3370,38 @@ dependencies = [
|
|
|
3298
3370
|
|
|
3299
3371
|
[[package]]
|
|
3300
3372
|
name = "toml_datetime"
|
|
3301
|
-
version = "0.6.
|
|
3373
|
+
version = "0.6.11"
|
|
3302
3374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3303
|
-
checksum = "
|
|
3375
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
3304
3376
|
dependencies = [
|
|
3305
3377
|
"serde",
|
|
3306
3378
|
]
|
|
3307
3379
|
|
|
3308
3380
|
[[package]]
|
|
3309
3381
|
name = "toml_edit"
|
|
3310
|
-
version = "0.22.
|
|
3382
|
+
version = "0.22.27"
|
|
3311
3383
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3312
|
-
checksum = "
|
|
3384
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
3313
3385
|
dependencies = [
|
|
3314
3386
|
"indexmap",
|
|
3315
3387
|
"serde",
|
|
3316
3388
|
"serde_spanned",
|
|
3317
3389
|
"toml_datetime",
|
|
3390
|
+
"toml_write",
|
|
3318
3391
|
"winnow",
|
|
3319
3392
|
]
|
|
3320
3393
|
|
|
3394
|
+
[[package]]
|
|
3395
|
+
name = "toml_write"
|
|
3396
|
+
version = "0.1.2"
|
|
3397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3398
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
3399
|
+
|
|
3321
3400
|
[[package]]
|
|
3322
3401
|
name = "tracing"
|
|
3323
|
-
version = "0.1.
|
|
3402
|
+
version = "0.1.41"
|
|
3324
3403
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3325
|
-
checksum = "
|
|
3404
|
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
|
|
3326
3405
|
dependencies = [
|
|
3327
3406
|
"pin-project-lite",
|
|
3328
3407
|
"tracing-attributes",
|
|
@@ -3331,9 +3410,9 @@ dependencies = [
|
|
|
3331
3410
|
|
|
3332
3411
|
[[package]]
|
|
3333
3412
|
name = "tracing-attributes"
|
|
3334
|
-
version = "0.1.
|
|
3413
|
+
version = "0.1.30"
|
|
3335
3414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3336
|
-
checksum = "
|
|
3415
|
+
checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
|
|
3337
3416
|
dependencies = [
|
|
3338
3417
|
"proc-macro2",
|
|
3339
3418
|
"quote",
|
|
@@ -3342,9 +3421,9 @@ dependencies = [
|
|
|
3342
3421
|
|
|
3343
3422
|
[[package]]
|
|
3344
3423
|
name = "tracing-core"
|
|
3345
|
-
version = "0.1.
|
|
3424
|
+
version = "0.1.34"
|
|
3346
3425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3347
|
-
checksum = "
|
|
3426
|
+
checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
|
|
3348
3427
|
dependencies = [
|
|
3349
3428
|
"once_cell",
|
|
3350
3429
|
]
|
|
@@ -3367,15 +3446,15 @@ dependencies = [
|
|
|
3367
3446
|
|
|
3368
3447
|
[[package]]
|
|
3369
3448
|
name = "typenum"
|
|
3370
|
-
version = "1.
|
|
3449
|
+
version = "1.18.0"
|
|
3371
3450
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3372
|
-
checksum = "
|
|
3451
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
3373
3452
|
|
|
3374
3453
|
[[package]]
|
|
3375
3454
|
name = "ucd-trie"
|
|
3376
|
-
version = "0.1.
|
|
3455
|
+
version = "0.1.7"
|
|
3377
3456
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3378
|
-
checksum = "
|
|
3457
|
+
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
|
|
3379
3458
|
|
|
3380
3459
|
[[package]]
|
|
3381
3460
|
name = "uname"
|
|
@@ -3388,27 +3467,33 @@ dependencies = [
|
|
|
3388
3467
|
|
|
3389
3468
|
[[package]]
|
|
3390
3469
|
name = "unicode-id-start"
|
|
3391
|
-
version = "1.
|
|
3470
|
+
version = "1.4.0"
|
|
3392
3471
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3393
|
-
checksum = "
|
|
3472
|
+
checksum = "81b79ad29b5e19de4260020f8919b443b2ef0277d242ce532ec7b7a2cc8b6007"
|
|
3394
3473
|
|
|
3395
3474
|
[[package]]
|
|
3396
3475
|
name = "unicode-ident"
|
|
3397
|
-
version = "1.0.
|
|
3476
|
+
version = "1.0.19"
|
|
3398
3477
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3399
|
-
checksum = "
|
|
3478
|
+
checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
|
|
3400
3479
|
|
|
3401
3480
|
[[package]]
|
|
3402
3481
|
name = "unicode-width"
|
|
3403
|
-
version = "0.1.
|
|
3482
|
+
version = "0.1.14"
|
|
3404
3483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3405
|
-
checksum = "
|
|
3484
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
3485
|
+
|
|
3486
|
+
[[package]]
|
|
3487
|
+
name = "unicode-width"
|
|
3488
|
+
version = "0.2.1"
|
|
3489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3490
|
+
checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
|
|
3406
3491
|
|
|
3407
3492
|
[[package]]
|
|
3408
3493
|
name = "url"
|
|
3409
|
-
version = "2.5.
|
|
3494
|
+
version = "2.5.7"
|
|
3410
3495
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3411
|
-
checksum = "
|
|
3496
|
+
checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
|
|
3412
3497
|
dependencies = [
|
|
3413
3498
|
"form_urlencoded",
|
|
3414
3499
|
"idna",
|
|
@@ -3416,12 +3501,6 @@ dependencies = [
|
|
|
3416
3501
|
"serde",
|
|
3417
3502
|
]
|
|
3418
3503
|
|
|
3419
|
-
[[package]]
|
|
3420
|
-
name = "utf16_iter"
|
|
3421
|
-
version = "1.0.5"
|
|
3422
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3423
|
-
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
|
3424
|
-
|
|
3425
3504
|
[[package]]
|
|
3426
3505
|
name = "utf8_iter"
|
|
3427
3506
|
version = "1.0.4"
|
|
@@ -3436,13 +3515,15 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
3436
3515
|
|
|
3437
3516
|
[[package]]
|
|
3438
3517
|
name = "uuid"
|
|
3439
|
-
version = "1.
|
|
3518
|
+
version = "1.18.1"
|
|
3440
3519
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3441
|
-
checksum = "
|
|
3520
|
+
checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
|
|
3442
3521
|
dependencies = [
|
|
3443
|
-
"getrandom 0.
|
|
3522
|
+
"getrandom 0.3.3",
|
|
3523
|
+
"js-sys",
|
|
3444
3524
|
"serde",
|
|
3445
3525
|
"sha1_smol",
|
|
3526
|
+
"wasm-bindgen",
|
|
3446
3527
|
]
|
|
3447
3528
|
|
|
3448
3529
|
[[package]]
|
|
@@ -3453,9 +3534,9 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
|
3453
3534
|
|
|
3454
3535
|
[[package]]
|
|
3455
3536
|
name = "version_check"
|
|
3456
|
-
version = "0.9.
|
|
3537
|
+
version = "0.9.5"
|
|
3457
3538
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3458
|
-
checksum = "
|
|
3539
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3459
3540
|
|
|
3460
3541
|
[[package]]
|
|
3461
3542
|
name = "vlq"
|
|
@@ -3471,9 +3552,9 @@ checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
|
|
|
3471
3552
|
|
|
3472
3553
|
[[package]]
|
|
3473
3554
|
name = "wait-timeout"
|
|
3474
|
-
version = "0.2.
|
|
3555
|
+
version = "0.2.1"
|
|
3475
3556
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3476
|
-
checksum = "
|
|
3557
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
3477
3558
|
dependencies = [
|
|
3478
3559
|
"libc",
|
|
3479
3560
|
]
|
|
@@ -3490,17 +3571,26 @@ dependencies = [
|
|
|
3490
3571
|
|
|
3491
3572
|
[[package]]
|
|
3492
3573
|
name = "wasi"
|
|
3493
|
-
version = "0.11.
|
|
3574
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3494
3575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3495
|
-
checksum = "
|
|
3576
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3496
3577
|
|
|
3497
3578
|
[[package]]
|
|
3498
3579
|
name = "wasi"
|
|
3499
|
-
version = "0.14.
|
|
3580
|
+
version = "0.14.7+wasi-0.2.4"
|
|
3581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3582
|
+
checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
|
|
3583
|
+
dependencies = [
|
|
3584
|
+
"wasip2",
|
|
3585
|
+
]
|
|
3586
|
+
|
|
3587
|
+
[[package]]
|
|
3588
|
+
name = "wasip2"
|
|
3589
|
+
version = "1.0.1+wasi-0.2.4"
|
|
3500
3590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3501
|
-
checksum = "
|
|
3591
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
3502
3592
|
dependencies = [
|
|
3503
|
-
"wit-bindgen
|
|
3593
|
+
"wit-bindgen",
|
|
3504
3594
|
]
|
|
3505
3595
|
|
|
3506
3596
|
[[package]]
|
|
@@ -3511,21 +3601,22 @@ checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
|
|
|
3511
3601
|
|
|
3512
3602
|
[[package]]
|
|
3513
3603
|
name = "wasm-bindgen"
|
|
3514
|
-
version = "0.2.
|
|
3604
|
+
version = "0.2.104"
|
|
3515
3605
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3516
|
-
checksum = "
|
|
3606
|
+
checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d"
|
|
3517
3607
|
dependencies = [
|
|
3518
3608
|
"cfg-if",
|
|
3519
3609
|
"once_cell",
|
|
3520
3610
|
"rustversion",
|
|
3521
3611
|
"wasm-bindgen-macro",
|
|
3612
|
+
"wasm-bindgen-shared",
|
|
3522
3613
|
]
|
|
3523
3614
|
|
|
3524
3615
|
[[package]]
|
|
3525
3616
|
name = "wasm-bindgen-backend"
|
|
3526
|
-
version = "0.2.
|
|
3617
|
+
version = "0.2.104"
|
|
3527
3618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3528
|
-
checksum = "
|
|
3619
|
+
checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19"
|
|
3529
3620
|
dependencies = [
|
|
3530
3621
|
"bumpalo",
|
|
3531
3622
|
"log",
|
|
@@ -3537,9 +3628,9 @@ dependencies = [
|
|
|
3537
3628
|
|
|
3538
3629
|
[[package]]
|
|
3539
3630
|
name = "wasm-bindgen-macro"
|
|
3540
|
-
version = "0.2.
|
|
3631
|
+
version = "0.2.104"
|
|
3541
3632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3542
|
-
checksum = "
|
|
3633
|
+
checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119"
|
|
3543
3634
|
dependencies = [
|
|
3544
3635
|
"quote",
|
|
3545
3636
|
"wasm-bindgen-macro-support",
|
|
@@ -3547,9 +3638,9 @@ dependencies = [
|
|
|
3547
3638
|
|
|
3548
3639
|
[[package]]
|
|
3549
3640
|
name = "wasm-bindgen-macro-support"
|
|
3550
|
-
version = "0.2.
|
|
3641
|
+
version = "0.2.104"
|
|
3551
3642
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3552
|
-
checksum = "
|
|
3643
|
+
checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7"
|
|
3553
3644
|
dependencies = [
|
|
3554
3645
|
"proc-macro2",
|
|
3555
3646
|
"quote",
|
|
@@ -3560,9 +3651,9 @@ dependencies = [
|
|
|
3560
3651
|
|
|
3561
3652
|
[[package]]
|
|
3562
3653
|
name = "wasm-bindgen-shared"
|
|
3563
|
-
version = "0.2.
|
|
3654
|
+
version = "0.2.104"
|
|
3564
3655
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3565
|
-
checksum = "
|
|
3656
|
+
checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1"
|
|
3566
3657
|
dependencies = [
|
|
3567
3658
|
"unicode-ident",
|
|
3568
3659
|
]
|
|
@@ -3573,8 +3664,8 @@ version = "0.214.0"
|
|
|
3573
3664
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3574
3665
|
checksum = "5309c1090e3e84dad0d382f42064e9933fdaedb87e468cc239f0eabea73ddcb6"
|
|
3575
3666
|
dependencies = [
|
|
3576
|
-
"ahash 0.8.
|
|
3577
|
-
"bitflags 2.
|
|
3667
|
+
"ahash 0.8.12",
|
|
3668
|
+
"bitflags 2.9.4",
|
|
3578
3669
|
"hashbrown 0.14.5",
|
|
3579
3670
|
"indexmap",
|
|
3580
3671
|
"semver",
|
|
@@ -3588,14 +3679,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3588
3679
|
checksum = "6746b5315e417144282a047ebb82260d45c92d09bf653fa9ec975e3809be942b"
|
|
3589
3680
|
dependencies = [
|
|
3590
3681
|
"leb128",
|
|
3591
|
-
"thiserror 1.0.
|
|
3682
|
+
"thiserror 1.0.69",
|
|
3592
3683
|
]
|
|
3593
3684
|
|
|
3594
3685
|
[[package]]
|
|
3595
3686
|
name = "web-sys"
|
|
3596
|
-
version = "0.3.
|
|
3687
|
+
version = "0.3.81"
|
|
3597
3688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3598
|
-
checksum = "
|
|
3689
|
+
checksum = "9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120"
|
|
3599
3690
|
dependencies = [
|
|
3600
3691
|
"js-sys",
|
|
3601
3692
|
"wasm-bindgen",
|
|
@@ -3610,16 +3701,16 @@ dependencies = [
|
|
|
3610
3701
|
"either",
|
|
3611
3702
|
"home",
|
|
3612
3703
|
"once_cell",
|
|
3613
|
-
"rustix",
|
|
3704
|
+
"rustix 0.38.44",
|
|
3614
3705
|
]
|
|
3615
3706
|
|
|
3616
3707
|
[[package]]
|
|
3617
3708
|
name = "whoami"
|
|
3618
|
-
version = "1.
|
|
3709
|
+
version = "1.6.1"
|
|
3619
3710
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3620
|
-
checksum = "
|
|
3711
|
+
checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d"
|
|
3621
3712
|
dependencies = [
|
|
3622
|
-
"
|
|
3713
|
+
"libredox",
|
|
3623
3714
|
"wasite",
|
|
3624
3715
|
"web-sys",
|
|
3625
3716
|
]
|
|
@@ -3642,11 +3733,11 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
|
3642
3733
|
|
|
3643
3734
|
[[package]]
|
|
3644
3735
|
name = "winapi-util"
|
|
3645
|
-
version = "0.1.
|
|
3736
|
+
version = "0.1.11"
|
|
3646
3737
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3647
|
-
checksum = "
|
|
3738
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
3648
3739
|
dependencies = [
|
|
3649
|
-
"windows-sys 0.
|
|
3740
|
+
"windows-sys 0.61.1",
|
|
3650
3741
|
]
|
|
3651
3742
|
|
|
3652
3743
|
[[package]]
|
|
@@ -3656,22 +3747,68 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3656
3747
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3657
3748
|
|
|
3658
3749
|
[[package]]
|
|
3659
|
-
name = "windows"
|
|
3660
|
-
version = "0.
|
|
3750
|
+
name = "windows-core"
|
|
3751
|
+
version = "0.62.1"
|
|
3661
3752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3662
|
-
checksum = "
|
|
3753
|
+
checksum = "6844ee5416b285084d3d3fffd743b925a6c9385455f64f6d4fa3031c4c2749a9"
|
|
3663
3754
|
dependencies = [
|
|
3664
|
-
"windows-
|
|
3665
|
-
"windows-
|
|
3755
|
+
"windows-implement",
|
|
3756
|
+
"windows-interface",
|
|
3757
|
+
"windows-link 0.2.0",
|
|
3758
|
+
"windows-result",
|
|
3759
|
+
"windows-strings",
|
|
3666
3760
|
]
|
|
3667
3761
|
|
|
3668
3762
|
[[package]]
|
|
3669
|
-
name = "windows-
|
|
3670
|
-
version = "0.
|
|
3763
|
+
name = "windows-implement"
|
|
3764
|
+
version = "0.60.1"
|
|
3671
3765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3672
|
-
checksum = "
|
|
3766
|
+
checksum = "edb307e42a74fb6de9bf3a02d9712678b22399c87e6fa869d6dfcd8c1b7754e0"
|
|
3673
3767
|
dependencies = [
|
|
3674
|
-
"
|
|
3768
|
+
"proc-macro2",
|
|
3769
|
+
"quote",
|
|
3770
|
+
"syn",
|
|
3771
|
+
]
|
|
3772
|
+
|
|
3773
|
+
[[package]]
|
|
3774
|
+
name = "windows-interface"
|
|
3775
|
+
version = "0.59.2"
|
|
3776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3777
|
+
checksum = "c0abd1ddbc6964ac14db11c7213d6532ef34bd9aa042c2e5935f59d7908b46a5"
|
|
3778
|
+
dependencies = [
|
|
3779
|
+
"proc-macro2",
|
|
3780
|
+
"quote",
|
|
3781
|
+
"syn",
|
|
3782
|
+
]
|
|
3783
|
+
|
|
3784
|
+
[[package]]
|
|
3785
|
+
name = "windows-link"
|
|
3786
|
+
version = "0.1.3"
|
|
3787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3788
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
3789
|
+
|
|
3790
|
+
[[package]]
|
|
3791
|
+
name = "windows-link"
|
|
3792
|
+
version = "0.2.0"
|
|
3793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3794
|
+
checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65"
|
|
3795
|
+
|
|
3796
|
+
[[package]]
|
|
3797
|
+
name = "windows-result"
|
|
3798
|
+
version = "0.4.0"
|
|
3799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3800
|
+
checksum = "7084dcc306f89883455a206237404d3eaf961e5bd7e0f312f7c91f57eb44167f"
|
|
3801
|
+
dependencies = [
|
|
3802
|
+
"windows-link 0.2.0",
|
|
3803
|
+
]
|
|
3804
|
+
|
|
3805
|
+
[[package]]
|
|
3806
|
+
name = "windows-strings"
|
|
3807
|
+
version = "0.5.0"
|
|
3808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3809
|
+
checksum = "7218c655a553b0bed4426cf54b20d7ba363ef543b52d515b3e48d7fd55318dda"
|
|
3810
|
+
dependencies = [
|
|
3811
|
+
"windows-link 0.2.0",
|
|
3675
3812
|
]
|
|
3676
3813
|
|
|
3677
3814
|
[[package]]
|
|
@@ -3716,6 +3853,24 @@ dependencies = [
|
|
|
3716
3853
|
"windows-targets 0.52.6",
|
|
3717
3854
|
]
|
|
3718
3855
|
|
|
3856
|
+
[[package]]
|
|
3857
|
+
name = "windows-sys"
|
|
3858
|
+
version = "0.60.2"
|
|
3859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3860
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3861
|
+
dependencies = [
|
|
3862
|
+
"windows-targets 0.53.4",
|
|
3863
|
+
]
|
|
3864
|
+
|
|
3865
|
+
[[package]]
|
|
3866
|
+
name = "windows-sys"
|
|
3867
|
+
version = "0.61.1"
|
|
3868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3869
|
+
checksum = "6f109e41dd4a3c848907eb83d5a42ea98b3769495597450cf6d153507b166f0f"
|
|
3870
|
+
dependencies = [
|
|
3871
|
+
"windows-link 0.2.0",
|
|
3872
|
+
]
|
|
3873
|
+
|
|
3719
3874
|
[[package]]
|
|
3720
3875
|
name = "windows-targets"
|
|
3721
3876
|
version = "0.48.5"
|
|
@@ -3740,13 +3895,30 @@ dependencies = [
|
|
|
3740
3895
|
"windows_aarch64_gnullvm 0.52.6",
|
|
3741
3896
|
"windows_aarch64_msvc 0.52.6",
|
|
3742
3897
|
"windows_i686_gnu 0.52.6",
|
|
3743
|
-
"windows_i686_gnullvm",
|
|
3898
|
+
"windows_i686_gnullvm 0.52.6",
|
|
3744
3899
|
"windows_i686_msvc 0.52.6",
|
|
3745
3900
|
"windows_x86_64_gnu 0.52.6",
|
|
3746
3901
|
"windows_x86_64_gnullvm 0.52.6",
|
|
3747
3902
|
"windows_x86_64_msvc 0.52.6",
|
|
3748
3903
|
]
|
|
3749
3904
|
|
|
3905
|
+
[[package]]
|
|
3906
|
+
name = "windows-targets"
|
|
3907
|
+
version = "0.53.4"
|
|
3908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3909
|
+
checksum = "2d42b7b7f66d2a06854650af09cfdf8713e427a439c97ad65a6375318033ac4b"
|
|
3910
|
+
dependencies = [
|
|
3911
|
+
"windows-link 0.2.0",
|
|
3912
|
+
"windows_aarch64_gnullvm 0.53.0",
|
|
3913
|
+
"windows_aarch64_msvc 0.53.0",
|
|
3914
|
+
"windows_i686_gnu 0.53.0",
|
|
3915
|
+
"windows_i686_gnullvm 0.53.0",
|
|
3916
|
+
"windows_i686_msvc 0.53.0",
|
|
3917
|
+
"windows_x86_64_gnu 0.53.0",
|
|
3918
|
+
"windows_x86_64_gnullvm 0.53.0",
|
|
3919
|
+
"windows_x86_64_msvc 0.53.0",
|
|
3920
|
+
]
|
|
3921
|
+
|
|
3750
3922
|
[[package]]
|
|
3751
3923
|
name = "windows_aarch64_gnullvm"
|
|
3752
3924
|
version = "0.42.2"
|
|
@@ -3765,6 +3937,12 @@ version = "0.52.6"
|
|
|
3765
3937
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3766
3938
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3767
3939
|
|
|
3940
|
+
[[package]]
|
|
3941
|
+
name = "windows_aarch64_gnullvm"
|
|
3942
|
+
version = "0.53.0"
|
|
3943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3944
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
3945
|
+
|
|
3768
3946
|
[[package]]
|
|
3769
3947
|
name = "windows_aarch64_msvc"
|
|
3770
3948
|
version = "0.42.2"
|
|
@@ -3783,6 +3961,12 @@ version = "0.52.6"
|
|
|
3783
3961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3784
3962
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3785
3963
|
|
|
3964
|
+
[[package]]
|
|
3965
|
+
name = "windows_aarch64_msvc"
|
|
3966
|
+
version = "0.53.0"
|
|
3967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3968
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
3969
|
+
|
|
3786
3970
|
[[package]]
|
|
3787
3971
|
name = "windows_i686_gnu"
|
|
3788
3972
|
version = "0.42.2"
|
|
@@ -3801,12 +3985,24 @@ version = "0.52.6"
|
|
|
3801
3985
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3802
3986
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3803
3987
|
|
|
3988
|
+
[[package]]
|
|
3989
|
+
name = "windows_i686_gnu"
|
|
3990
|
+
version = "0.53.0"
|
|
3991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3992
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
3993
|
+
|
|
3804
3994
|
[[package]]
|
|
3805
3995
|
name = "windows_i686_gnullvm"
|
|
3806
3996
|
version = "0.52.6"
|
|
3807
3997
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3808
3998
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3809
3999
|
|
|
4000
|
+
[[package]]
|
|
4001
|
+
name = "windows_i686_gnullvm"
|
|
4002
|
+
version = "0.53.0"
|
|
4003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4004
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
4005
|
+
|
|
3810
4006
|
[[package]]
|
|
3811
4007
|
name = "windows_i686_msvc"
|
|
3812
4008
|
version = "0.42.2"
|
|
@@ -3825,6 +4021,12 @@ version = "0.52.6"
|
|
|
3825
4021
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3826
4022
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3827
4023
|
|
|
4024
|
+
[[package]]
|
|
4025
|
+
name = "windows_i686_msvc"
|
|
4026
|
+
version = "0.53.0"
|
|
4027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4028
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
4029
|
+
|
|
3828
4030
|
[[package]]
|
|
3829
4031
|
name = "windows_x86_64_gnu"
|
|
3830
4032
|
version = "0.42.2"
|
|
@@ -3843,6 +4045,12 @@ version = "0.52.6"
|
|
|
3843
4045
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3844
4046
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3845
4047
|
|
|
4048
|
+
[[package]]
|
|
4049
|
+
name = "windows_x86_64_gnu"
|
|
4050
|
+
version = "0.53.0"
|
|
4051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4052
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
4053
|
+
|
|
3846
4054
|
[[package]]
|
|
3847
4055
|
name = "windows_x86_64_gnullvm"
|
|
3848
4056
|
version = "0.42.2"
|
|
@@ -3861,6 +4069,12 @@ version = "0.52.6"
|
|
|
3861
4069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3862
4070
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3863
4071
|
|
|
4072
|
+
[[package]]
|
|
4073
|
+
name = "windows_x86_64_gnullvm"
|
|
4074
|
+
version = "0.53.0"
|
|
4075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4076
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
4077
|
+
|
|
3864
4078
|
[[package]]
|
|
3865
4079
|
name = "windows_x86_64_msvc"
|
|
3866
4080
|
version = "0.42.2"
|
|
@@ -3880,34 +4094,31 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3880
4094
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3881
4095
|
|
|
3882
4096
|
[[package]]
|
|
3883
|
-
name = "
|
|
3884
|
-
version = "0.
|
|
4097
|
+
name = "windows_x86_64_msvc"
|
|
4098
|
+
version = "0.53.0"
|
|
3885
4099
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3886
|
-
checksum = "
|
|
3887
|
-
dependencies = [
|
|
3888
|
-
"memchr",
|
|
3889
|
-
]
|
|
4100
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
3890
4101
|
|
|
3891
4102
|
[[package]]
|
|
3892
|
-
name = "
|
|
3893
|
-
version = "0.
|
|
4103
|
+
name = "winnow"
|
|
4104
|
+
version = "0.7.13"
|
|
3894
4105
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3895
|
-
checksum = "
|
|
4106
|
+
checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
|
|
3896
4107
|
dependencies = [
|
|
3897
|
-
"
|
|
4108
|
+
"memchr",
|
|
3898
4109
|
]
|
|
3899
4110
|
|
|
3900
4111
|
[[package]]
|
|
3901
|
-
name = "
|
|
3902
|
-
version = "
|
|
4112
|
+
name = "wit-bindgen"
|
|
4113
|
+
version = "0.46.0"
|
|
3903
4114
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3904
|
-
checksum = "
|
|
4115
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
3905
4116
|
|
|
3906
4117
|
[[package]]
|
|
3907
4118
|
name = "writeable"
|
|
3908
|
-
version = "0.
|
|
4119
|
+
version = "0.6.1"
|
|
3909
4120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3910
|
-
checksum = "
|
|
4121
|
+
checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
|
|
3911
4122
|
|
|
3912
4123
|
[[package]]
|
|
3913
4124
|
name = "wyz"
|
|
@@ -3929,9 +4140,9 @@ dependencies = [
|
|
|
3929
4140
|
|
|
3930
4141
|
[[package]]
|
|
3931
4142
|
name = "yoke"
|
|
3932
|
-
version = "0.
|
|
4143
|
+
version = "0.8.0"
|
|
3933
4144
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3934
|
-
checksum = "
|
|
4145
|
+
checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
|
|
3935
4146
|
dependencies = [
|
|
3936
4147
|
"serde",
|
|
3937
4148
|
"stable_deref_trait",
|
|
@@ -3941,9 +4152,9 @@ dependencies = [
|
|
|
3941
4152
|
|
|
3942
4153
|
[[package]]
|
|
3943
4154
|
name = "yoke-derive"
|
|
3944
|
-
version = "0.
|
|
4155
|
+
version = "0.8.0"
|
|
3945
4156
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3946
|
-
checksum = "
|
|
4157
|
+
checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
|
|
3947
4158
|
dependencies = [
|
|
3948
4159
|
"proc-macro2",
|
|
3949
4160
|
"quote",
|
|
@@ -3953,18 +4164,18 @@ dependencies = [
|
|
|
3953
4164
|
|
|
3954
4165
|
[[package]]
|
|
3955
4166
|
name = "zerocopy"
|
|
3956
|
-
version = "0.
|
|
4167
|
+
version = "0.8.27"
|
|
3957
4168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3958
|
-
checksum = "
|
|
4169
|
+
checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
|
|
3959
4170
|
dependencies = [
|
|
3960
4171
|
"zerocopy-derive",
|
|
3961
4172
|
]
|
|
3962
4173
|
|
|
3963
4174
|
[[package]]
|
|
3964
4175
|
name = "zerocopy-derive"
|
|
3965
|
-
version = "0.
|
|
4176
|
+
version = "0.8.27"
|
|
3966
4177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3967
|
-
checksum = "
|
|
4178
|
+
checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
|
|
3968
4179
|
dependencies = [
|
|
3969
4180
|
"proc-macro2",
|
|
3970
4181
|
"quote",
|
|
@@ -3973,18 +4184,18 @@ dependencies = [
|
|
|
3973
4184
|
|
|
3974
4185
|
[[package]]
|
|
3975
4186
|
name = "zerofrom"
|
|
3976
|
-
version = "0.1.
|
|
4187
|
+
version = "0.1.6"
|
|
3977
4188
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3978
|
-
checksum = "
|
|
4189
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
3979
4190
|
dependencies = [
|
|
3980
4191
|
"zerofrom-derive",
|
|
3981
4192
|
]
|
|
3982
4193
|
|
|
3983
4194
|
[[package]]
|
|
3984
4195
|
name = "zerofrom-derive"
|
|
3985
|
-
version = "0.1.
|
|
4196
|
+
version = "0.1.6"
|
|
3986
4197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3987
|
-
checksum = "
|
|
4198
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
3988
4199
|
dependencies = [
|
|
3989
4200
|
"proc-macro2",
|
|
3990
4201
|
"quote",
|
|
@@ -3994,9 +4205,9 @@ dependencies = [
|
|
|
3994
4205
|
|
|
3995
4206
|
[[package]]
|
|
3996
4207
|
name = "zeroize"
|
|
3997
|
-
version = "1.8.
|
|
4208
|
+
version = "1.8.2"
|
|
3998
4209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3999
|
-
checksum = "
|
|
4210
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
4000
4211
|
dependencies = [
|
|
4001
4212
|
"zeroize_derive",
|
|
4002
4213
|
]
|
|
@@ -4012,11 +4223,22 @@ dependencies = [
|
|
|
4012
4223
|
"syn",
|
|
4013
4224
|
]
|
|
4014
4225
|
|
|
4226
|
+
[[package]]
|
|
4227
|
+
name = "zerotrie"
|
|
4228
|
+
version = "0.2.2"
|
|
4229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4230
|
+
checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
|
|
4231
|
+
dependencies = [
|
|
4232
|
+
"displaydoc",
|
|
4233
|
+
"yoke",
|
|
4234
|
+
"zerofrom",
|
|
4235
|
+
]
|
|
4236
|
+
|
|
4015
4237
|
[[package]]
|
|
4016
4238
|
name = "zerovec"
|
|
4017
|
-
version = "0.
|
|
4239
|
+
version = "0.11.4"
|
|
4018
4240
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4019
|
-
checksum = "
|
|
4241
|
+
checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
|
|
4020
4242
|
dependencies = [
|
|
4021
4243
|
"yoke",
|
|
4022
4244
|
"zerofrom",
|
|
@@ -4025,9 +4247,9 @@ dependencies = [
|
|
|
4025
4247
|
|
|
4026
4248
|
[[package]]
|
|
4027
4249
|
name = "zerovec-derive"
|
|
4028
|
-
version = "0.
|
|
4250
|
+
version = "0.11.1"
|
|
4029
4251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4030
|
-
checksum = "
|
|
4252
|
+
checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
|
|
4031
4253
|
dependencies = [
|
|
4032
4254
|
"proc-macro2",
|
|
4033
4255
|
"quote",
|
|
@@ -4049,14 +4271,14 @@ dependencies = [
|
|
|
4049
4271
|
"deflate64",
|
|
4050
4272
|
"displaydoc",
|
|
4051
4273
|
"flate2",
|
|
4052
|
-
"getrandom 0.3.
|
|
4274
|
+
"getrandom 0.3.3",
|
|
4053
4275
|
"hmac",
|
|
4054
4276
|
"indexmap",
|
|
4055
4277
|
"lzma-rs",
|
|
4056
4278
|
"memchr",
|
|
4057
4279
|
"pbkdf2",
|
|
4058
4280
|
"sha1",
|
|
4059
|
-
"thiserror 2.0.
|
|
4281
|
+
"thiserror 2.0.17",
|
|
4060
4282
|
"time",
|
|
4061
4283
|
"xz2",
|
|
4062
4284
|
"zeroize",
|
|
@@ -4066,41 +4288,39 @@ dependencies = [
|
|
|
4066
4288
|
|
|
4067
4289
|
[[package]]
|
|
4068
4290
|
name = "zopfli"
|
|
4069
|
-
version = "0.8.
|
|
4291
|
+
version = "0.8.2"
|
|
4070
4292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4071
|
-
checksum = "
|
|
4293
|
+
checksum = "edfc5ee405f504cd4984ecc6f14d02d55cfda60fa4b689434ef4102aae150cd7"
|
|
4072
4294
|
dependencies = [
|
|
4073
4295
|
"bumpalo",
|
|
4074
4296
|
"crc32fast",
|
|
4075
|
-
"lockfree-object-pool",
|
|
4076
4297
|
"log",
|
|
4077
|
-
"once_cell",
|
|
4078
4298
|
"simd-adler32",
|
|
4079
4299
|
]
|
|
4080
4300
|
|
|
4081
4301
|
[[package]]
|
|
4082
4302
|
name = "zstd"
|
|
4083
|
-
version = "0.13.
|
|
4303
|
+
version = "0.13.3"
|
|
4084
4304
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4085
|
-
checksum = "
|
|
4305
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
4086
4306
|
dependencies = [
|
|
4087
4307
|
"zstd-safe",
|
|
4088
4308
|
]
|
|
4089
4309
|
|
|
4090
4310
|
[[package]]
|
|
4091
4311
|
name = "zstd-safe"
|
|
4092
|
-
version = "7.
|
|
4312
|
+
version = "7.2.4"
|
|
4093
4313
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4094
|
-
checksum = "
|
|
4314
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
4095
4315
|
dependencies = [
|
|
4096
4316
|
"zstd-sys",
|
|
4097
4317
|
]
|
|
4098
4318
|
|
|
4099
4319
|
[[package]]
|
|
4100
4320
|
name = "zstd-sys"
|
|
4101
|
-
version = "2.0.
|
|
4321
|
+
version = "2.0.16+zstd.1.5.7"
|
|
4102
4322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4103
|
-
checksum = "
|
|
4323
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
4104
4324
|
dependencies = [
|
|
4105
4325
|
"cc",
|
|
4106
4326
|
"pkg-config",
|