valkey-glide 2.0.0__tar.gz → 2.2.5__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.
- {valkey_glide-2.0.0/python → valkey_glide-2.2.5}/Cargo.lock +1042 -476
- {valkey_glide-2.0.0/python → valkey_glide-2.2.5}/Cargo.toml +5 -5
- valkey_glide-2.2.5/PKG-INFO +211 -0
- valkey_glide-2.2.5/README.md +189 -0
- valkey_glide-2.0.0/glide-core/THIRD_PARTY_LICENSES_RUST → valkey_glide-2.2.5/THIRD_PARTY_LICENSES_PYTHON_ASYNC +5211 -5664
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/Cargo.toml +14 -22
- valkey_glide-2.0.0/python/THIRD_PARTY_LICENSES_PYTHON → valkey_glide-2.2.5/local_dependencies/glide-core/THIRD_PARTY_LICENSES_RUST +3191 -6716
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/benches/memory_benchmark.rs +2 -1
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/src/client/mod.rs +631 -97
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/src/client/reconnecting_connection.rs +46 -7
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/src/client/standalone_client.rs +98 -49
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/src/client/types.rs +70 -5
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/src/client/value_conversion.rs +11 -11
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/src/cluster_scan_container.rs +4 -16
- valkey_glide-2.2.5/local_dependencies/glide-core/src/iam/mod.rs +1034 -0
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/src/lib.rs +1 -0
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/src/protobuf/command_request.proto +17 -2
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/src/protobuf/connection_request.proto +18 -0
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/src/request_type.rs +33 -0
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/src/socket_listener.rs +10 -7
- valkey_glide-2.2.5/local_dependencies/glide-core/tests/test_client.rs +2698 -0
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/tests/test_cluster_client.rs +215 -33
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/tests/test_socket_listener.rs +1 -1
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/tests/test_standalone_client.rs +293 -31
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/tests/utilities/cluster.rs +71 -17
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/tests/utilities/mocks.rs +16 -2
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/tests/utilities/mod.rs +110 -19
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/logger_core/Cargo.toml +0 -4
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/logger_core/src/lib.rs +2 -2
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/logger_core/tests/test_logger.rs +7 -10
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/Cargo.toml +8 -71
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/examples/async-await.rs +2 -2
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/examples/async-multiplexed.rs +2 -2
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/examples/async-pub-sub.rs +3 -1
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/examples/async-scan.rs +2 -2
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/examples/basic.rs +4 -4
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/aio/connection.rs +8 -5
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/aio/mod.rs +7 -6
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/aio/multiplexed_connection.rs +4 -4
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/aio/tokio.rs +8 -6
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/client.rs +49 -5
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/cluster.rs +3 -2
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/cluster_async/connections_container.rs +20 -1
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/cluster_async/connections_logic.rs +4 -6
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/cluster_async/mod.rs +144 -26
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/cluster_async/pipeline_routing.rs +5 -8
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/cluster_client.rs +50 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/cluster_routing.rs +4 -3
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/cluster_topology.rs +1 -1
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/cmd.rs +2 -2
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/commands/macros.rs +12 -12
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/commands/mod.rs +4 -677
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/connection.rs +115 -67
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/lib.rs +4 -18
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/parser.rs +1 -1
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/sentinel.rs +4 -4
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/tls.rs +33 -19
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/types.rs +11 -205
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/tests/auth.rs +10 -7
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/tests/support/cluster.rs +10 -23
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/tests/support/mod.rs +2 -2
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/tests/support/sentinel.rs +6 -6
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/tests/support/util.rs +1 -4
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/tests/test_async.rs +17 -14
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/tests/test_basic.rs +1 -1
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/tests/test_cluster.rs +1 -1
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/tests/test_cluster_async.rs +382 -146
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/tests/test_cluster_pipeline.rs +29 -55
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/tests/test_cluster_scan.rs +39 -39
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/tests/test_types.rs +0 -31
- {valkey_glide-2.0.0/glide-core/telemetry → valkey_glide-2.2.5/local_dependencies/telemetrylib}/Cargo.toml +1 -3
- {valkey_glide-2.0.0/glide-core/telemetry → valkey_glide-2.2.5/local_dependencies/telemetrylib}/src/open_telemetry.rs +496 -22
- {valkey_glide-2.0.0 → valkey_glide-2.2.5}/pyproject.toml +11 -23
- {valkey_glide-2.0.0 → valkey_glide-2.2.5}/python/glide/__init__.py +152 -118
- {valkey_glide-2.0.0 → valkey_glide-2.2.5}/python/glide/async_commands/cluster_commands.py +29 -14
- {valkey_glide-2.0.0/python → valkey_glide-2.2.5}/python/glide/async_commands/core.py +600 -414
- {valkey_glide-2.0.0/python/glide/async_commands/server_modules → valkey_glide-2.2.5/python/glide/async_commands}/ft.py +8 -7
- {valkey_glide-2.0.0/python/python/glide/async_commands/server_modules → valkey_glide-2.2.5/python/glide/async_commands}/glide_json.py +15 -92
- {valkey_glide-2.0.0 → valkey_glide-2.2.5}/python/glide/async_commands/standalone_commands.py +10 -51
- {valkey_glide-2.0.0/python → valkey_glide-2.2.5}/python/glide/glide.pyi +1 -1
- {valkey_glide-2.0.0 → valkey_glide-2.2.5}/python/glide/glide_client.py +54 -48
- {valkey_glide-2.0.0/python → valkey_glide-2.2.5}/python/glide/logger.py +3 -3
- {valkey_glide-2.0.0 → valkey_glide-2.2.5}/python/glide/opentelemetry.py +8 -4
- {valkey_glide-2.0.0/python → valkey_glide-2.2.5}/requirements.txt +1 -0
- {valkey_glide-2.0.0/python → valkey_glide-2.2.5}/src/lib.rs +7 -10
- valkey_glide-2.0.0/PKG-INFO +0 -149
- valkey_glide-2.0.0/glide-core/redis-rs/Cargo.toml +0 -9
- valkey_glide-2.0.0/glide-core/redis-rs/redis/README.md +0 -246
- valkey_glide-2.0.0/glide-core/redis-rs/redis/examples/async-connection-loss.rs +0 -97
- valkey_glide-2.0.0/glide-core/redis-rs/redis/examples/streams.rs +0 -270
- valkey_glide-2.0.0/glide-core/redis-rs/redis/src/commands/json.rs +0 -390
- valkey_glide-2.0.0/glide-core/redis-rs/redis/src/r2d2.rs +0 -36
- valkey_glide-2.0.0/glide-core/redis-rs/redis/src/streams.rs +0 -670
- valkey_glide-2.0.0/glide-core/redis-rs/redis/tests/test_bignum.rs +0 -61
- valkey_glide-2.0.0/glide-core/redis-rs/redis/tests/test_module_json.rs +0 -540
- valkey_glide-2.0.0/glide-core/redis-rs/redis/tests/test_streams.rs +0 -627
- valkey_glide-2.0.0/glide-core/tests/test_client.rs +0 -1520
- valkey_glide-2.0.0/python/.flake8 +0 -10
- valkey_glide-2.0.0/python/.gitignore +0 -160
- valkey_glide-2.0.0/python/.ort.yml +0 -15
- valkey_glide-2.0.0/python/DEVELOPER.md +0 -498
- valkey_glide-2.0.0/python/Pipfile +0 -11
- valkey_glide-2.0.0/python/README.md +0 -125
- valkey_glide-2.0.0/python/dev.py +0 -290
- valkey_glide-2.0.0/python/dev_requirements.txt +0 -16
- valkey_glide-2.0.0/python/docs/Makefile +0 -20
- valkey_glide-2.0.0/python/docs/conf.py +0 -76
- valkey_glide-2.0.0/python/docs/index.rst +0 -17
- valkey_glide-2.0.0/python/docs/make.bat +0 -35
- valkey_glide-2.0.0/python/glide/async_commands/batch.py +0 -5603
- valkey_glide-2.0.0/python/glide/async_commands/batch_options.py +0 -261
- valkey_glide-2.0.0/python/glide/async_commands/bitmap.py +0 -320
- valkey_glide-2.0.0/python/glide/async_commands/command_args.py +0 -103
- valkey_glide-2.0.0/python/glide/async_commands/core.py +0 -7632
- valkey_glide-2.0.0/python/glide/async_commands/server_modules/ft_options/ft_aggregate_options.py +0 -300
- valkey_glide-2.0.0/python/glide/async_commands/server_modules/ft_options/ft_constants.py +0 -84
- valkey_glide-2.0.0/python/glide/async_commands/server_modules/ft_options/ft_create_options.py +0 -421
- valkey_glide-2.0.0/python/glide/async_commands/server_modules/ft_options/ft_profile_options.py +0 -113
- valkey_glide-2.0.0/python/glide/async_commands/server_modules/ft_options/ft_search_options.py +0 -137
- valkey_glide-2.0.0/python/glide/async_commands/server_modules/glide_json.py +0 -1346
- valkey_glide-2.0.0/python/glide/async_commands/server_modules/json_batch.py +0 -820
- valkey_glide-2.0.0/python/glide/async_commands/sorted_set.py +0 -412
- valkey_glide-2.0.0/python/glide/async_commands/stream.py +0 -449
- valkey_glide-2.0.0/python/glide/config.py +0 -731
- valkey_glide-2.0.0/python/glide/constants.py +0 -124
- valkey_glide-2.0.0/python/glide/exceptions.py +0 -62
- valkey_glide-2.0.0/python/glide/glide.pyi +0 -61
- valkey_glide-2.0.0/python/glide/logger.py +0 -97
- valkey_glide-2.0.0/python/glide/protobuf_codec.py +0 -110
- valkey_glide-2.0.0/python/glide/routes.py +0 -147
- valkey_glide-2.0.0/python/pytest.ini +0 -5
- valkey_glide-2.0.0/python/python/glide/__init__.py +0 -354
- valkey_glide-2.0.0/python/python/glide/async_commands/__init__.py +0 -5
- valkey_glide-2.0.0/python/python/glide/async_commands/batch.py +0 -5603
- valkey_glide-2.0.0/python/python/glide/async_commands/batch_options.py +0 -261
- valkey_glide-2.0.0/python/python/glide/async_commands/bitmap.py +0 -320
- valkey_glide-2.0.0/python/python/glide/async_commands/cluster_commands.py +0 -1461
- valkey_glide-2.0.0/python/python/glide/async_commands/command_args.py +0 -103
- valkey_glide-2.0.0/python/python/glide/async_commands/server_modules/ft.py +0 -464
- valkey_glide-2.0.0/python/python/glide/async_commands/server_modules/ft_options/ft_aggregate_options.py +0 -300
- valkey_glide-2.0.0/python/python/glide/async_commands/server_modules/ft_options/ft_constants.py +0 -84
- valkey_glide-2.0.0/python/python/glide/async_commands/server_modules/ft_options/ft_create_options.py +0 -421
- valkey_glide-2.0.0/python/python/glide/async_commands/server_modules/ft_options/ft_profile_options.py +0 -113
- valkey_glide-2.0.0/python/python/glide/async_commands/server_modules/ft_options/ft_search_options.py +0 -137
- valkey_glide-2.0.0/python/python/glide/async_commands/server_modules/json_batch.py +0 -820
- valkey_glide-2.0.0/python/python/glide/async_commands/sorted_set.py +0 -412
- valkey_glide-2.0.0/python/python/glide/async_commands/standalone_commands.py +0 -1042
- valkey_glide-2.0.0/python/python/glide/async_commands/stream.py +0 -449
- valkey_glide-2.0.0/python/python/glide/config.py +0 -731
- valkey_glide-2.0.0/python/python/glide/constants.py +0 -124
- valkey_glide-2.0.0/python/python/glide/exceptions.py +0 -62
- valkey_glide-2.0.0/python/python/glide/glide_client.py +0 -815
- valkey_glide-2.0.0/python/python/glide/opentelemetry.py +0 -181
- valkey_glide-2.0.0/python/python/glide/protobuf_codec.py +0 -110
- valkey_glide-2.0.0/python/python/glide/py.typed +0 -0
- valkey_glide-2.0.0/python/python/glide/routes.py +0 -147
- valkey_glide-2.0.0/python/tests/__init__.py +0 -1
- valkey_glide-2.0.0/python/tests/conftest.py +0 -569
- valkey_glide-2.0.0/python/tests/test_api_export.py +0 -153
- valkey_glide-2.0.0/python/tests/test_async_client.py +0 -10704
- valkey_glide-2.0.0/python/tests/test_auth.py +0 -334
- valkey_glide-2.0.0/python/tests/test_batch.py +0 -1678
- valkey_glide-2.0.0/python/tests/test_config.py +0 -198
- valkey_glide-2.0.0/python/tests/test_lazy_connection.py +0 -248
- valkey_glide-2.0.0/python/tests/test_opentelemetry.py +0 -577
- valkey_glide-2.0.0/python/tests/test_proto_coded.py +0 -58
- valkey_glide-2.0.0/python/tests/test_pubsub.py +0 -2742
- valkey_glide-2.0.0/python/tests/test_read_from_strategy.py +0 -344
- valkey_glide-2.0.0/python/tests/test_scan.py +0 -802
- valkey_glide-2.0.0/python/tests/test_tls.py +0 -20
- valkey_glide-2.0.0/python/tests/test_utils.py +0 -105
- valkey_glide-2.0.0/python/tests/tests_server_modules/test_ft.py +0 -1183
- valkey_glide-2.0.0/python/tests/tests_server_modules/test_json.py +0 -2240
- valkey_glide-2.0.0/python/tests/utils/cluster.py +0 -100
- valkey_glide-2.0.0/python/tests/utils/utils.py +0 -410
- {valkey_glide-2.0.0/python → valkey_glide-2.2.5}/.cargo/config.toml +0 -0
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/.cargo/config.toml +0 -0
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/.ort.yml +0 -0
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/README.md +0 -0
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/benches/connections_benchmark.rs +0 -0
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/benches/rotating_buffer_benchmark.rs +0 -0
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/build.rs +0 -0
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/src/errors.rs +0 -0
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/src/protobuf/response.proto +0 -0
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/src/rotating_buffer.rs +0 -0
- {valkey_glide-2.0.0 → valkey_glide-2.2.5/local_dependencies}/glide-core/src/scripts_container.rs +0 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/CHANGELOG.md +0 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/LICENSE +0 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/benches/bench_basic.rs +0 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/benches/bench_cluster.rs +0 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/benches/bench_cluster_async.rs +0 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/release.toml +0 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/aio/connection_manager.rs +0 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/aio/runtime.rs +0 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/cluster_async/LICENSE +0 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/cluster_pipeline.rs +0 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/cluster_slotmap.rs +0 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/commands/cluster_scan.rs +0 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/macros.rs +0 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/pipeline.rs +0 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/push_manager.rs +0 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/src/retry_strategies.rs +0 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/tests/parser.rs +0 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/tests/support/mock_cluster.rs +0 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/tests/test_async_cluster_connections_logic.rs +0 -0
- {valkey_glide-2.0.0/glide-core/redis-rs → valkey_glide-2.2.5/local_dependencies}/redis/tests/test_sentinel.rs +0 -0
- {valkey_glide-2.0.0/glide-core/telemetry → valkey_glide-2.2.5/local_dependencies/telemetrylib}/src/lib.rs +0 -0
- {valkey_glide-2.0.0/glide-core/telemetry → valkey_glide-2.2.5/local_dependencies/telemetrylib}/src/metrics_exporter_file.rs +0 -0
- {valkey_glide-2.0.0/glide-core/telemetry → valkey_glide-2.2.5/local_dependencies/telemetrylib}/src/span_exporter_file.rs +0 -0
- {valkey_glide-2.0.0 → valkey_glide-2.2.5}/python/glide/async_commands/__init__.py +0 -0
- {valkey_glide-2.0.0 → valkey_glide-2.2.5}/python/glide/py.typed +0 -0
|
@@ -2,15 +2,6 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 4
|
|
4
4
|
|
|
5
|
-
[[package]]
|
|
6
|
-
name = "addr2line"
|
|
7
|
-
version = "0.24.2"
|
|
8
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
|
|
10
|
-
dependencies = [
|
|
11
|
-
"gimli",
|
|
12
|
-
]
|
|
13
|
-
|
|
14
5
|
[[package]]
|
|
15
6
|
name = "adler2"
|
|
16
7
|
version = "2.0.1"
|
|
@@ -19,19 +10,13 @@ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
|
19
10
|
|
|
20
11
|
[[package]]
|
|
21
12
|
name = "aho-corasick"
|
|
22
|
-
version = "1.1.
|
|
13
|
+
version = "1.1.4"
|
|
23
14
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
-
checksum = "
|
|
15
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
25
16
|
dependencies = [
|
|
26
17
|
"memchr",
|
|
27
18
|
]
|
|
28
19
|
|
|
29
|
-
[[package]]
|
|
30
|
-
name = "android-tzdata"
|
|
31
|
-
version = "0.1.1"
|
|
32
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
-
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
|
34
|
-
|
|
35
20
|
[[package]]
|
|
36
21
|
name = "android_system_properties"
|
|
37
22
|
version = "0.1.5"
|
|
@@ -43,15 +28,18 @@ dependencies = [
|
|
|
43
28
|
|
|
44
29
|
[[package]]
|
|
45
30
|
name = "anyhow"
|
|
46
|
-
version = "1.0.
|
|
31
|
+
version = "1.0.100"
|
|
47
32
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
-
checksum = "
|
|
33
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
49
34
|
|
|
50
35
|
[[package]]
|
|
51
36
|
name = "arc-swap"
|
|
52
|
-
version = "1.
|
|
37
|
+
version = "1.8.0"
|
|
53
38
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
-
checksum = "
|
|
39
|
+
checksum = "51d03449bb8ca2cc2ef70869af31463d1ae5ccc8fa3e334b307203fbf815207e"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"rustversion",
|
|
42
|
+
]
|
|
55
43
|
|
|
56
44
|
[[package]]
|
|
57
45
|
name = "async-stream"
|
|
@@ -77,9 +65,9 @@ dependencies = [
|
|
|
77
65
|
|
|
78
66
|
[[package]]
|
|
79
67
|
name = "async-trait"
|
|
80
|
-
version = "0.1.
|
|
68
|
+
version = "0.1.89"
|
|
81
69
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
-
checksum = "
|
|
70
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
83
71
|
dependencies = [
|
|
84
72
|
"proc-macro2",
|
|
85
73
|
"quote",
|
|
@@ -98,6 +86,354 @@ version = "1.5.0"
|
|
|
98
86
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
87
|
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
100
88
|
|
|
89
|
+
[[package]]
|
|
90
|
+
name = "aws-config"
|
|
91
|
+
version = "1.8.12"
|
|
92
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
+
checksum = "96571e6996817bf3d58f6b569e4b9fd2e9d2fcf9f7424eed07b2ce9bb87535e5"
|
|
94
|
+
dependencies = [
|
|
95
|
+
"aws-credential-types",
|
|
96
|
+
"aws-runtime",
|
|
97
|
+
"aws-sdk-sso",
|
|
98
|
+
"aws-sdk-ssooidc",
|
|
99
|
+
"aws-sdk-sts",
|
|
100
|
+
"aws-smithy-async",
|
|
101
|
+
"aws-smithy-http",
|
|
102
|
+
"aws-smithy-json",
|
|
103
|
+
"aws-smithy-runtime",
|
|
104
|
+
"aws-smithy-runtime-api",
|
|
105
|
+
"aws-smithy-types",
|
|
106
|
+
"aws-types",
|
|
107
|
+
"bytes",
|
|
108
|
+
"fastrand",
|
|
109
|
+
"hex",
|
|
110
|
+
"http 1.4.0",
|
|
111
|
+
"ring",
|
|
112
|
+
"time",
|
|
113
|
+
"tokio",
|
|
114
|
+
"tracing",
|
|
115
|
+
"url",
|
|
116
|
+
"zeroize",
|
|
117
|
+
]
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "aws-credential-types"
|
|
121
|
+
version = "1.2.11"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "3cd362783681b15d136480ad555a099e82ecd8e2d10a841e14dfd0078d67fee3"
|
|
124
|
+
dependencies = [
|
|
125
|
+
"aws-smithy-async",
|
|
126
|
+
"aws-smithy-runtime-api",
|
|
127
|
+
"aws-smithy-types",
|
|
128
|
+
"zeroize",
|
|
129
|
+
]
|
|
130
|
+
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "aws-lc-rs"
|
|
133
|
+
version = "1.15.2"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "6a88aab2464f1f25453baa7a07c84c5b7684e274054ba06817f382357f77a288"
|
|
136
|
+
dependencies = [
|
|
137
|
+
"aws-lc-sys",
|
|
138
|
+
"zeroize",
|
|
139
|
+
]
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "aws-lc-sys"
|
|
143
|
+
version = "0.35.0"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "b45afffdee1e7c9126814751f88dddc747f41d91da16c9551a0f1e8a11e788a1"
|
|
146
|
+
dependencies = [
|
|
147
|
+
"cc",
|
|
148
|
+
"cmake",
|
|
149
|
+
"dunce",
|
|
150
|
+
"fs_extra",
|
|
151
|
+
]
|
|
152
|
+
|
|
153
|
+
[[package]]
|
|
154
|
+
name = "aws-runtime"
|
|
155
|
+
version = "1.5.17"
|
|
156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
157
|
+
checksum = "d81b5b2898f6798ad58f484856768bca817e3cd9de0974c24ae0f1113fe88f1b"
|
|
158
|
+
dependencies = [
|
|
159
|
+
"aws-credential-types",
|
|
160
|
+
"aws-sigv4",
|
|
161
|
+
"aws-smithy-async",
|
|
162
|
+
"aws-smithy-http",
|
|
163
|
+
"aws-smithy-runtime",
|
|
164
|
+
"aws-smithy-runtime-api",
|
|
165
|
+
"aws-smithy-types",
|
|
166
|
+
"aws-types",
|
|
167
|
+
"bytes",
|
|
168
|
+
"fastrand",
|
|
169
|
+
"http 0.2.12",
|
|
170
|
+
"http-body 0.4.6",
|
|
171
|
+
"percent-encoding",
|
|
172
|
+
"pin-project-lite",
|
|
173
|
+
"tracing",
|
|
174
|
+
"uuid",
|
|
175
|
+
]
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "aws-sdk-sso"
|
|
179
|
+
version = "1.91.0"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "8ee6402a36f27b52fe67661c6732d684b2635152b676aa2babbfb5204f99115d"
|
|
182
|
+
dependencies = [
|
|
183
|
+
"aws-credential-types",
|
|
184
|
+
"aws-runtime",
|
|
185
|
+
"aws-smithy-async",
|
|
186
|
+
"aws-smithy-http",
|
|
187
|
+
"aws-smithy-json",
|
|
188
|
+
"aws-smithy-runtime",
|
|
189
|
+
"aws-smithy-runtime-api",
|
|
190
|
+
"aws-smithy-types",
|
|
191
|
+
"aws-types",
|
|
192
|
+
"bytes",
|
|
193
|
+
"fastrand",
|
|
194
|
+
"http 0.2.12",
|
|
195
|
+
"regex-lite",
|
|
196
|
+
"tracing",
|
|
197
|
+
]
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "aws-sdk-ssooidc"
|
|
201
|
+
version = "1.93.0"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "a45a7f750bbd170ee3677671ad782d90b894548f4e4ae168302c57ec9de5cb3e"
|
|
204
|
+
dependencies = [
|
|
205
|
+
"aws-credential-types",
|
|
206
|
+
"aws-runtime",
|
|
207
|
+
"aws-smithy-async",
|
|
208
|
+
"aws-smithy-http",
|
|
209
|
+
"aws-smithy-json",
|
|
210
|
+
"aws-smithy-runtime",
|
|
211
|
+
"aws-smithy-runtime-api",
|
|
212
|
+
"aws-smithy-types",
|
|
213
|
+
"aws-types",
|
|
214
|
+
"bytes",
|
|
215
|
+
"fastrand",
|
|
216
|
+
"http 0.2.12",
|
|
217
|
+
"regex-lite",
|
|
218
|
+
"tracing",
|
|
219
|
+
]
|
|
220
|
+
|
|
221
|
+
[[package]]
|
|
222
|
+
name = "aws-sdk-sts"
|
|
223
|
+
version = "1.95.0"
|
|
224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
225
|
+
checksum = "55542378e419558e6b1f398ca70adb0b2088077e79ad9f14eb09441f2f7b2164"
|
|
226
|
+
dependencies = [
|
|
227
|
+
"aws-credential-types",
|
|
228
|
+
"aws-runtime",
|
|
229
|
+
"aws-smithy-async",
|
|
230
|
+
"aws-smithy-http",
|
|
231
|
+
"aws-smithy-json",
|
|
232
|
+
"aws-smithy-query",
|
|
233
|
+
"aws-smithy-runtime",
|
|
234
|
+
"aws-smithy-runtime-api",
|
|
235
|
+
"aws-smithy-types",
|
|
236
|
+
"aws-smithy-xml",
|
|
237
|
+
"aws-types",
|
|
238
|
+
"fastrand",
|
|
239
|
+
"http 0.2.12",
|
|
240
|
+
"regex-lite",
|
|
241
|
+
"tracing",
|
|
242
|
+
]
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "aws-sigv4"
|
|
246
|
+
version = "1.3.7"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "69e523e1c4e8e7e8ff219d732988e22bfeae8a1cafdbe6d9eca1546fa080be7c"
|
|
249
|
+
dependencies = [
|
|
250
|
+
"aws-credential-types",
|
|
251
|
+
"aws-smithy-http",
|
|
252
|
+
"aws-smithy-runtime-api",
|
|
253
|
+
"aws-smithy-types",
|
|
254
|
+
"bytes",
|
|
255
|
+
"form_urlencoded",
|
|
256
|
+
"hex",
|
|
257
|
+
"hmac",
|
|
258
|
+
"http 0.2.12",
|
|
259
|
+
"http 1.4.0",
|
|
260
|
+
"percent-encoding",
|
|
261
|
+
"sha2",
|
|
262
|
+
"time",
|
|
263
|
+
"tracing",
|
|
264
|
+
]
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "aws-smithy-async"
|
|
268
|
+
version = "1.2.7"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "9ee19095c7c4dda59f1697d028ce704c24b2d33c6718790c7f1d5a3015b4107c"
|
|
271
|
+
dependencies = [
|
|
272
|
+
"futures-util",
|
|
273
|
+
"pin-project-lite",
|
|
274
|
+
"tokio",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "aws-smithy-http"
|
|
279
|
+
version = "0.62.6"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "826141069295752372f8203c17f28e30c464d22899a43a0c9fd9c458d469c88b"
|
|
282
|
+
dependencies = [
|
|
283
|
+
"aws-smithy-runtime-api",
|
|
284
|
+
"aws-smithy-types",
|
|
285
|
+
"bytes",
|
|
286
|
+
"bytes-utils",
|
|
287
|
+
"futures-core",
|
|
288
|
+
"futures-util",
|
|
289
|
+
"http 0.2.12",
|
|
290
|
+
"http 1.4.0",
|
|
291
|
+
"http-body 0.4.6",
|
|
292
|
+
"percent-encoding",
|
|
293
|
+
"pin-project-lite",
|
|
294
|
+
"pin-utils",
|
|
295
|
+
"tracing",
|
|
296
|
+
]
|
|
297
|
+
|
|
298
|
+
[[package]]
|
|
299
|
+
name = "aws-smithy-http-client"
|
|
300
|
+
version = "1.1.5"
|
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
+
checksum = "59e62db736db19c488966c8d787f52e6270be565727236fd5579eaa301e7bc4a"
|
|
303
|
+
dependencies = [
|
|
304
|
+
"aws-smithy-async",
|
|
305
|
+
"aws-smithy-runtime-api",
|
|
306
|
+
"aws-smithy-types",
|
|
307
|
+
"h2",
|
|
308
|
+
"http 1.4.0",
|
|
309
|
+
"hyper",
|
|
310
|
+
"hyper-rustls",
|
|
311
|
+
"hyper-util",
|
|
312
|
+
"pin-project-lite",
|
|
313
|
+
"rustls",
|
|
314
|
+
"rustls-native-certs",
|
|
315
|
+
"rustls-pki-types",
|
|
316
|
+
"tokio",
|
|
317
|
+
"tokio-rustls",
|
|
318
|
+
"tower 0.5.2",
|
|
319
|
+
"tracing",
|
|
320
|
+
]
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "aws-smithy-json"
|
|
324
|
+
version = "0.61.9"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "49fa1213db31ac95288d981476f78d05d9cbb0353d22cdf3472cc05bb02f6551"
|
|
327
|
+
dependencies = [
|
|
328
|
+
"aws-smithy-types",
|
|
329
|
+
]
|
|
330
|
+
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "aws-smithy-observability"
|
|
333
|
+
version = "0.1.5"
|
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
+
checksum = "17f616c3f2260612fe44cede278bafa18e73e6479c4e393e2c4518cf2a9a228a"
|
|
336
|
+
dependencies = [
|
|
337
|
+
"aws-smithy-runtime-api",
|
|
338
|
+
]
|
|
339
|
+
|
|
340
|
+
[[package]]
|
|
341
|
+
name = "aws-smithy-query"
|
|
342
|
+
version = "0.60.9"
|
|
343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
+
checksum = "ae5d689cf437eae90460e944a58b5668530d433b4ff85789e69d2f2a556e057d"
|
|
345
|
+
dependencies = [
|
|
346
|
+
"aws-smithy-types",
|
|
347
|
+
"urlencoding",
|
|
348
|
+
]
|
|
349
|
+
|
|
350
|
+
[[package]]
|
|
351
|
+
name = "aws-smithy-runtime"
|
|
352
|
+
version = "1.9.5"
|
|
353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
+
checksum = "a392db6c583ea4a912538afb86b7be7c5d8887d91604f50eb55c262ee1b4a5f5"
|
|
355
|
+
dependencies = [
|
|
356
|
+
"aws-smithy-async",
|
|
357
|
+
"aws-smithy-http",
|
|
358
|
+
"aws-smithy-http-client",
|
|
359
|
+
"aws-smithy-observability",
|
|
360
|
+
"aws-smithy-runtime-api",
|
|
361
|
+
"aws-smithy-types",
|
|
362
|
+
"bytes",
|
|
363
|
+
"fastrand",
|
|
364
|
+
"http 0.2.12",
|
|
365
|
+
"http 1.4.0",
|
|
366
|
+
"http-body 0.4.6",
|
|
367
|
+
"http-body 1.0.1",
|
|
368
|
+
"pin-project-lite",
|
|
369
|
+
"pin-utils",
|
|
370
|
+
"tokio",
|
|
371
|
+
"tracing",
|
|
372
|
+
]
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "aws-smithy-runtime-api"
|
|
376
|
+
version = "1.9.3"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "ab0d43d899f9e508300e587bf582ba54c27a452dd0a9ea294690669138ae14a2"
|
|
379
|
+
dependencies = [
|
|
380
|
+
"aws-smithy-async",
|
|
381
|
+
"aws-smithy-types",
|
|
382
|
+
"bytes",
|
|
383
|
+
"http 0.2.12",
|
|
384
|
+
"http 1.4.0",
|
|
385
|
+
"pin-project-lite",
|
|
386
|
+
"tokio",
|
|
387
|
+
"tracing",
|
|
388
|
+
"zeroize",
|
|
389
|
+
]
|
|
390
|
+
|
|
391
|
+
[[package]]
|
|
392
|
+
name = "aws-smithy-types"
|
|
393
|
+
version = "1.3.5"
|
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
395
|
+
checksum = "905cb13a9895626d49cf2ced759b062d913834c7482c38e49557eac4e6193f01"
|
|
396
|
+
dependencies = [
|
|
397
|
+
"base64-simd",
|
|
398
|
+
"bytes",
|
|
399
|
+
"bytes-utils",
|
|
400
|
+
"http 0.2.12",
|
|
401
|
+
"http 1.4.0",
|
|
402
|
+
"http-body 0.4.6",
|
|
403
|
+
"http-body 1.0.1",
|
|
404
|
+
"http-body-util",
|
|
405
|
+
"itoa",
|
|
406
|
+
"num-integer",
|
|
407
|
+
"pin-project-lite",
|
|
408
|
+
"pin-utils",
|
|
409
|
+
"ryu",
|
|
410
|
+
"serde",
|
|
411
|
+
"time",
|
|
412
|
+
]
|
|
413
|
+
|
|
414
|
+
[[package]]
|
|
415
|
+
name = "aws-smithy-xml"
|
|
416
|
+
version = "0.60.13"
|
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
+
checksum = "11b2f670422ff42bf7065031e72b45bc52a3508bd089f743ea90731ca2b6ea57"
|
|
419
|
+
dependencies = [
|
|
420
|
+
"xmlparser",
|
|
421
|
+
]
|
|
422
|
+
|
|
423
|
+
[[package]]
|
|
424
|
+
name = "aws-types"
|
|
425
|
+
version = "1.3.11"
|
|
426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
+
checksum = "1d980627d2dd7bfc32a3c025685a033eeab8d365cc840c631ef59d1b8f428164"
|
|
428
|
+
dependencies = [
|
|
429
|
+
"aws-credential-types",
|
|
430
|
+
"aws-smithy-async",
|
|
431
|
+
"aws-smithy-runtime-api",
|
|
432
|
+
"aws-smithy-types",
|
|
433
|
+
"rustc_version",
|
|
434
|
+
"tracing",
|
|
435
|
+
]
|
|
436
|
+
|
|
101
437
|
[[package]]
|
|
102
438
|
name = "axum"
|
|
103
439
|
version = "0.7.9"
|
|
@@ -108,8 +444,8 @@ dependencies = [
|
|
|
108
444
|
"axum-core",
|
|
109
445
|
"bytes",
|
|
110
446
|
"futures-util",
|
|
111
|
-
"http",
|
|
112
|
-
"http-body",
|
|
447
|
+
"http 1.4.0",
|
|
448
|
+
"http-body 1.0.1",
|
|
113
449
|
"http-body-util",
|
|
114
450
|
"itoa",
|
|
115
451
|
"matchit",
|
|
@@ -134,8 +470,8 @@ dependencies = [
|
|
|
134
470
|
"async-trait",
|
|
135
471
|
"bytes",
|
|
136
472
|
"futures-util",
|
|
137
|
-
"http",
|
|
138
|
-
"http-body",
|
|
473
|
+
"http 1.4.0",
|
|
474
|
+
"http-body 1.0.1",
|
|
139
475
|
"http-body-util",
|
|
140
476
|
"mime",
|
|
141
477
|
"pin-project-lite",
|
|
@@ -146,50 +482,67 @@ dependencies = [
|
|
|
146
482
|
]
|
|
147
483
|
|
|
148
484
|
[[package]]
|
|
149
|
-
name = "
|
|
150
|
-
version = "0.
|
|
485
|
+
name = "base64"
|
|
486
|
+
version = "0.22.1"
|
|
151
487
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
-
checksum = "
|
|
488
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
489
|
+
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "base64-simd"
|
|
492
|
+
version = "0.8.0"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195"
|
|
153
495
|
dependencies = [
|
|
154
|
-
"
|
|
155
|
-
"
|
|
156
|
-
"libc",
|
|
157
|
-
"miniz_oxide",
|
|
158
|
-
"object",
|
|
159
|
-
"rustc-demangle",
|
|
160
|
-
"windows-targets 0.52.6",
|
|
496
|
+
"outref",
|
|
497
|
+
"vsimd",
|
|
161
498
|
]
|
|
162
499
|
|
|
163
500
|
[[package]]
|
|
164
|
-
name = "
|
|
165
|
-
version = "
|
|
501
|
+
name = "bitflags"
|
|
502
|
+
version = "2.10.0"
|
|
166
503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
-
checksum = "
|
|
504
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
168
505
|
|
|
169
506
|
[[package]]
|
|
170
|
-
name = "
|
|
171
|
-
version = "
|
|
507
|
+
name = "block-buffer"
|
|
508
|
+
version = "0.10.4"
|
|
172
509
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
-
checksum = "
|
|
510
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
511
|
+
dependencies = [
|
|
512
|
+
"generic-array",
|
|
513
|
+
]
|
|
174
514
|
|
|
175
515
|
[[package]]
|
|
176
516
|
name = "bumpalo"
|
|
177
|
-
version = "3.
|
|
517
|
+
version = "3.19.1"
|
|
178
518
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
-
checksum = "
|
|
519
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
180
520
|
|
|
181
521
|
[[package]]
|
|
182
522
|
name = "bytes"
|
|
183
|
-
version = "1.
|
|
523
|
+
version = "1.11.0"
|
|
184
524
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
-
checksum = "
|
|
525
|
+
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
526
|
+
|
|
527
|
+
[[package]]
|
|
528
|
+
name = "bytes-utils"
|
|
529
|
+
version = "0.1.4"
|
|
530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
+
checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35"
|
|
532
|
+
dependencies = [
|
|
533
|
+
"bytes",
|
|
534
|
+
"either",
|
|
535
|
+
]
|
|
186
536
|
|
|
187
537
|
[[package]]
|
|
188
538
|
name = "cc"
|
|
189
|
-
version = "1.2.
|
|
539
|
+
version = "1.2.52"
|
|
190
540
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
-
checksum = "
|
|
541
|
+
checksum = "cd4932aefd12402b36c60956a4fe0035421f544799057659ff86f923657aada3"
|
|
192
542
|
dependencies = [
|
|
543
|
+
"find-msvc-tools",
|
|
544
|
+
"jobserver",
|
|
545
|
+
"libc",
|
|
193
546
|
"shlex",
|
|
194
547
|
]
|
|
195
548
|
|
|
@@ -201,17 +554,16 @@ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
|
201
554
|
|
|
202
555
|
[[package]]
|
|
203
556
|
name = "cfg-if"
|
|
204
|
-
version = "1.0.
|
|
557
|
+
version = "1.0.4"
|
|
205
558
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
-
checksum = "
|
|
559
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
207
560
|
|
|
208
561
|
[[package]]
|
|
209
562
|
name = "chrono"
|
|
210
|
-
version = "0.4.
|
|
563
|
+
version = "0.4.42"
|
|
211
564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
-
checksum = "
|
|
565
|
+
checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
|
|
213
566
|
dependencies = [
|
|
214
|
-
"android-tzdata",
|
|
215
567
|
"iana-time-zone",
|
|
216
568
|
"js-sys",
|
|
217
569
|
"num-traits",
|
|
@@ -219,6 +571,15 @@ dependencies = [
|
|
|
219
571
|
"windows-link",
|
|
220
572
|
]
|
|
221
573
|
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "cmake"
|
|
576
|
+
version = "0.1.57"
|
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
+
checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
|
|
579
|
+
dependencies = [
|
|
580
|
+
"cc",
|
|
581
|
+
]
|
|
582
|
+
|
|
222
583
|
[[package]]
|
|
223
584
|
name = "combine"
|
|
224
585
|
version = "4.6.7"
|
|
@@ -249,6 +610,15 @@ version = "0.8.7"
|
|
|
249
610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
611
|
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
251
612
|
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "cpufeatures"
|
|
615
|
+
version = "0.2.17"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
618
|
+
dependencies = [
|
|
619
|
+
"libc",
|
|
620
|
+
]
|
|
621
|
+
|
|
252
622
|
[[package]]
|
|
253
623
|
name = "crc16"
|
|
254
624
|
version = "0.4.0"
|
|
@@ -257,9 +627,9 @@ checksum = "338089f42c427b86394a5ee60ff321da23a5c89c9d89514c829687b26359fcff"
|
|
|
257
627
|
|
|
258
628
|
[[package]]
|
|
259
629
|
name = "crc32fast"
|
|
260
|
-
version = "1.
|
|
630
|
+
version = "1.5.0"
|
|
261
631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
262
|
-
checksum = "
|
|
632
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
263
633
|
dependencies = [
|
|
264
634
|
"cfg-if",
|
|
265
635
|
]
|
|
@@ -279,6 +649,16 @@ version = "0.8.21"
|
|
|
279
649
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
280
650
|
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
281
651
|
|
|
652
|
+
[[package]]
|
|
653
|
+
name = "crypto-common"
|
|
654
|
+
version = "0.1.7"
|
|
655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
656
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
657
|
+
dependencies = [
|
|
658
|
+
"generic-array",
|
|
659
|
+
"typenum",
|
|
660
|
+
]
|
|
661
|
+
|
|
282
662
|
[[package]]
|
|
283
663
|
name = "dashmap"
|
|
284
664
|
version = "6.1.0"
|
|
@@ -295,13 +675,24 @@ dependencies = [
|
|
|
295
675
|
|
|
296
676
|
[[package]]
|
|
297
677
|
name = "deranged"
|
|
298
|
-
version = "0.
|
|
678
|
+
version = "0.5.5"
|
|
299
679
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
-
checksum = "
|
|
680
|
+
checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
|
|
301
681
|
dependencies = [
|
|
302
682
|
"powerfmt",
|
|
303
683
|
]
|
|
304
684
|
|
|
685
|
+
[[package]]
|
|
686
|
+
name = "digest"
|
|
687
|
+
version = "0.10.7"
|
|
688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
690
|
+
dependencies = [
|
|
691
|
+
"block-buffer",
|
|
692
|
+
"crypto-common",
|
|
693
|
+
"subtle",
|
|
694
|
+
]
|
|
695
|
+
|
|
305
696
|
[[package]]
|
|
306
697
|
name = "directories"
|
|
307
698
|
version = "6.0.0"
|
|
@@ -320,7 +711,7 @@ dependencies = [
|
|
|
320
711
|
"libc",
|
|
321
712
|
"option-ext",
|
|
322
713
|
"redox_users",
|
|
323
|
-
"windows-sys 0.
|
|
714
|
+
"windows-sys 0.61.2",
|
|
324
715
|
]
|
|
325
716
|
|
|
326
717
|
[[package]]
|
|
@@ -354,6 +745,12 @@ dependencies = [
|
|
|
354
745
|
"syn",
|
|
355
746
|
]
|
|
356
747
|
|
|
748
|
+
[[package]]
|
|
749
|
+
name = "dunce"
|
|
750
|
+
version = "1.0.5"
|
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
753
|
+
|
|
357
754
|
[[package]]
|
|
358
755
|
name = "either"
|
|
359
756
|
version = "1.15.0"
|
|
@@ -368,12 +765,12 @@ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
|
368
765
|
|
|
369
766
|
[[package]]
|
|
370
767
|
name = "errno"
|
|
371
|
-
version = "0.3.
|
|
768
|
+
version = "0.3.14"
|
|
372
769
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
373
|
-
checksum = "
|
|
770
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
374
771
|
dependencies = [
|
|
375
772
|
"libc",
|
|
376
|
-
"windows-sys 0.
|
|
773
|
+
"windows-sys 0.61.2",
|
|
377
774
|
]
|
|
378
775
|
|
|
379
776
|
[[package]]
|
|
@@ -392,11 +789,17 @@ dependencies = [
|
|
|
392
789
|
"flate2",
|
|
393
790
|
]
|
|
394
791
|
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "find-msvc-tools"
|
|
794
|
+
version = "0.1.7"
|
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
+
checksum = "f449e6c6c08c865631d4890cfacf252b3d396c9bcc83adb6623cdb02a8336c41"
|
|
797
|
+
|
|
395
798
|
[[package]]
|
|
396
799
|
name = "flate2"
|
|
397
|
-
version = "1.1.
|
|
800
|
+
version = "1.1.5"
|
|
398
801
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
-
checksum = "
|
|
802
|
+
checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
|
|
400
803
|
dependencies = [
|
|
401
804
|
"crc32fast",
|
|
402
805
|
"miniz_oxide",
|
|
@@ -410,13 +813,19 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
410
813
|
|
|
411
814
|
[[package]]
|
|
412
815
|
name = "form_urlencoded"
|
|
413
|
-
version = "1.2.
|
|
816
|
+
version = "1.2.2"
|
|
414
817
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
|
-
checksum = "
|
|
818
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
416
819
|
dependencies = [
|
|
417
820
|
"percent-encoding",
|
|
418
821
|
]
|
|
419
822
|
|
|
823
|
+
[[package]]
|
|
824
|
+
name = "fs_extra"
|
|
825
|
+
version = "1.3.0"
|
|
826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
827
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
828
|
+
|
|
420
829
|
[[package]]
|
|
421
830
|
name = "futures"
|
|
422
831
|
version = "0.3.31"
|
|
@@ -517,6 +926,16 @@ dependencies = [
|
|
|
517
926
|
"slab",
|
|
518
927
|
]
|
|
519
928
|
|
|
929
|
+
[[package]]
|
|
930
|
+
name = "generic-array"
|
|
931
|
+
version = "0.14.7"
|
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
933
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
934
|
+
dependencies = [
|
|
935
|
+
"typenum",
|
|
936
|
+
"version_check",
|
|
937
|
+
]
|
|
938
|
+
|
|
520
939
|
[[package]]
|
|
521
940
|
name = "getrandom"
|
|
522
941
|
version = "0.2.16"
|
|
@@ -525,36 +944,34 @@ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
|
525
944
|
dependencies = [
|
|
526
945
|
"cfg-if",
|
|
527
946
|
"libc",
|
|
528
|
-
"wasi
|
|
947
|
+
"wasi",
|
|
529
948
|
]
|
|
530
949
|
|
|
531
950
|
[[package]]
|
|
532
951
|
name = "getrandom"
|
|
533
|
-
version = "0.3.
|
|
952
|
+
version = "0.3.4"
|
|
534
953
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
-
checksum = "
|
|
954
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
536
955
|
dependencies = [
|
|
537
956
|
"cfg-if",
|
|
538
957
|
"libc",
|
|
539
958
|
"r-efi",
|
|
540
|
-
"
|
|
959
|
+
"wasip2",
|
|
541
960
|
]
|
|
542
961
|
|
|
543
|
-
[[package]]
|
|
544
|
-
name = "gimli"
|
|
545
|
-
version = "0.31.1"
|
|
546
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
-
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
|
|
548
|
-
|
|
549
962
|
[[package]]
|
|
550
963
|
name = "glide-core"
|
|
551
964
|
version = "0.1.0"
|
|
552
965
|
dependencies = [
|
|
553
966
|
"async-trait",
|
|
967
|
+
"aws-config",
|
|
968
|
+
"aws-credential-types",
|
|
969
|
+
"aws-sigv4",
|
|
554
970
|
"bytes",
|
|
555
971
|
"directories",
|
|
556
972
|
"futures",
|
|
557
973
|
"futures-intrusive",
|
|
974
|
+
"http 1.4.0",
|
|
558
975
|
"integer-encoding",
|
|
559
976
|
"logger_core",
|
|
560
977
|
"nanoid",
|
|
@@ -564,37 +981,42 @@ dependencies = [
|
|
|
564
981
|
"protobuf-codegen",
|
|
565
982
|
"rand 0.8.5",
|
|
566
983
|
"redis",
|
|
984
|
+
"rustls",
|
|
985
|
+
"rustls-pki-types",
|
|
567
986
|
"serde",
|
|
568
987
|
"serde_json",
|
|
569
988
|
"sha1_smol",
|
|
989
|
+
"strum 0.26.3",
|
|
990
|
+
"strum_macros 0.26.4",
|
|
570
991
|
"telemetrylib",
|
|
571
|
-
"thiserror 2.0.
|
|
992
|
+
"thiserror 2.0.17",
|
|
572
993
|
"tokio",
|
|
573
|
-
"tokio-retry2",
|
|
994
|
+
"tokio-retry2 0.6.2",
|
|
574
995
|
"tokio-util",
|
|
996
|
+
"urlencoding",
|
|
575
997
|
"uuid",
|
|
576
998
|
"versions",
|
|
577
999
|
]
|
|
578
1000
|
|
|
579
1001
|
[[package]]
|
|
580
1002
|
name = "glob"
|
|
581
|
-
version = "0.3.
|
|
1003
|
+
version = "0.3.3"
|
|
582
1004
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
583
|
-
checksum = "
|
|
1005
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
584
1006
|
|
|
585
1007
|
[[package]]
|
|
586
1008
|
name = "h2"
|
|
587
|
-
version = "0.4.
|
|
1009
|
+
version = "0.4.13"
|
|
588
1010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
-
checksum = "
|
|
1011
|
+
checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
|
|
590
1012
|
dependencies = [
|
|
591
1013
|
"atomic-waker",
|
|
592
1014
|
"bytes",
|
|
593
1015
|
"fnv",
|
|
594
1016
|
"futures-core",
|
|
595
1017
|
"futures-sink",
|
|
596
|
-
"http",
|
|
597
|
-
"indexmap 2.
|
|
1018
|
+
"http 1.4.0",
|
|
1019
|
+
"indexmap 2.13.0",
|
|
598
1020
|
"slab",
|
|
599
1021
|
"tokio",
|
|
600
1022
|
"tokio-util",
|
|
@@ -615,42 +1037,78 @@ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
|
615
1037
|
|
|
616
1038
|
[[package]]
|
|
617
1039
|
name = "hashbrown"
|
|
618
|
-
version = "0.
|
|
1040
|
+
version = "0.16.1"
|
|
619
1041
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
-
checksum = "
|
|
1042
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
621
1043
|
|
|
622
1044
|
[[package]]
|
|
623
1045
|
name = "heck"
|
|
624
1046
|
version = "0.5.0"
|
|
625
1047
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
626
|
-
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1048
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1049
|
+
|
|
1050
|
+
[[package]]
|
|
1051
|
+
name = "hermit-abi"
|
|
1052
|
+
version = "0.5.2"
|
|
1053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1054
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1055
|
+
|
|
1056
|
+
[[package]]
|
|
1057
|
+
name = "hex"
|
|
1058
|
+
version = "0.4.3"
|
|
1059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
627
1061
|
|
|
628
1062
|
[[package]]
|
|
629
|
-
name = "
|
|
630
|
-
version = "0.
|
|
1063
|
+
name = "hmac"
|
|
1064
|
+
version = "0.12.1"
|
|
631
1065
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
632
|
-
checksum = "
|
|
1066
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
1067
|
+
dependencies = [
|
|
1068
|
+
"digest",
|
|
1069
|
+
]
|
|
633
1070
|
|
|
634
1071
|
[[package]]
|
|
635
1072
|
name = "home"
|
|
636
|
-
version = "0.5.
|
|
1073
|
+
version = "0.5.12"
|
|
637
1074
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
|
-
checksum = "
|
|
1075
|
+
checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
|
|
639
1076
|
dependencies = [
|
|
640
|
-
"windows-sys 0.
|
|
1077
|
+
"windows-sys 0.61.2",
|
|
641
1078
|
]
|
|
642
1079
|
|
|
643
1080
|
[[package]]
|
|
644
1081
|
name = "http"
|
|
645
|
-
version = "
|
|
1082
|
+
version = "0.2.12"
|
|
646
1083
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
-
checksum = "
|
|
1084
|
+
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
648
1085
|
dependencies = [
|
|
649
1086
|
"bytes",
|
|
650
1087
|
"fnv",
|
|
651
1088
|
"itoa",
|
|
652
1089
|
]
|
|
653
1090
|
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "http"
|
|
1093
|
+
version = "1.4.0"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
1096
|
+
dependencies = [
|
|
1097
|
+
"bytes",
|
|
1098
|
+
"itoa",
|
|
1099
|
+
]
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "http-body"
|
|
1103
|
+
version = "0.4.6"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
1106
|
+
dependencies = [
|
|
1107
|
+
"bytes",
|
|
1108
|
+
"http 0.2.12",
|
|
1109
|
+
"pin-project-lite",
|
|
1110
|
+
]
|
|
1111
|
+
|
|
654
1112
|
[[package]]
|
|
655
1113
|
name = "http-body"
|
|
656
1114
|
version = "1.0.1"
|
|
@@ -658,7 +1116,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
658
1116
|
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
659
1117
|
dependencies = [
|
|
660
1118
|
"bytes",
|
|
661
|
-
"http",
|
|
1119
|
+
"http 1.4.0",
|
|
662
1120
|
]
|
|
663
1121
|
|
|
664
1122
|
[[package]]
|
|
@@ -669,8 +1127,8 @@ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
|
669
1127
|
dependencies = [
|
|
670
1128
|
"bytes",
|
|
671
1129
|
"futures-core",
|
|
672
|
-
"http",
|
|
673
|
-
"http-body",
|
|
1130
|
+
"http 1.4.0",
|
|
1131
|
+
"http-body 1.0.1",
|
|
674
1132
|
"pin-project-lite",
|
|
675
1133
|
]
|
|
676
1134
|
|
|
@@ -688,25 +1146,44 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
|
688
1146
|
|
|
689
1147
|
[[package]]
|
|
690
1148
|
name = "hyper"
|
|
691
|
-
version = "1.
|
|
1149
|
+
version = "1.8.1"
|
|
692
1150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
-
checksum = "
|
|
1151
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
694
1152
|
dependencies = [
|
|
1153
|
+
"atomic-waker",
|
|
695
1154
|
"bytes",
|
|
696
1155
|
"futures-channel",
|
|
697
|
-
"futures-
|
|
1156
|
+
"futures-core",
|
|
698
1157
|
"h2",
|
|
699
|
-
"http",
|
|
700
|
-
"http-body",
|
|
1158
|
+
"http 1.4.0",
|
|
1159
|
+
"http-body 1.0.1",
|
|
701
1160
|
"httparse",
|
|
702
1161
|
"httpdate",
|
|
703
1162
|
"itoa",
|
|
704
1163
|
"pin-project-lite",
|
|
1164
|
+
"pin-utils",
|
|
705
1165
|
"smallvec",
|
|
706
1166
|
"tokio",
|
|
707
1167
|
"want",
|
|
708
1168
|
]
|
|
709
1169
|
|
|
1170
|
+
[[package]]
|
|
1171
|
+
name = "hyper-rustls"
|
|
1172
|
+
version = "0.27.7"
|
|
1173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1174
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
1175
|
+
dependencies = [
|
|
1176
|
+
"http 1.4.0",
|
|
1177
|
+
"hyper",
|
|
1178
|
+
"hyper-util",
|
|
1179
|
+
"rustls",
|
|
1180
|
+
"rustls-native-certs",
|
|
1181
|
+
"rustls-pki-types",
|
|
1182
|
+
"tokio",
|
|
1183
|
+
"tokio-rustls",
|
|
1184
|
+
"tower-service",
|
|
1185
|
+
]
|
|
1186
|
+
|
|
710
1187
|
[[package]]
|
|
711
1188
|
name = "hyper-timeout"
|
|
712
1189
|
version = "0.5.2"
|
|
@@ -722,23 +1199,23 @@ dependencies = [
|
|
|
722
1199
|
|
|
723
1200
|
[[package]]
|
|
724
1201
|
name = "hyper-util"
|
|
725
|
-
version = "0.1.
|
|
1202
|
+
version = "0.1.19"
|
|
726
1203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
-
checksum = "
|
|
1204
|
+
checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
|
|
728
1205
|
dependencies = [
|
|
729
1206
|
"base64",
|
|
730
1207
|
"bytes",
|
|
731
1208
|
"futures-channel",
|
|
732
1209
|
"futures-core",
|
|
733
1210
|
"futures-util",
|
|
734
|
-
"http",
|
|
735
|
-
"http-body",
|
|
1211
|
+
"http 1.4.0",
|
|
1212
|
+
"http-body 1.0.1",
|
|
736
1213
|
"hyper",
|
|
737
1214
|
"ipnet",
|
|
738
1215
|
"libc",
|
|
739
1216
|
"percent-encoding",
|
|
740
1217
|
"pin-project-lite",
|
|
741
|
-
"socket2",
|
|
1218
|
+
"socket2 0.6.1",
|
|
742
1219
|
"tokio",
|
|
743
1220
|
"tower-service",
|
|
744
1221
|
"tracing",
|
|
@@ -746,9 +1223,9 @@ dependencies = [
|
|
|
746
1223
|
|
|
747
1224
|
[[package]]
|
|
748
1225
|
name = "iana-time-zone"
|
|
749
|
-
version = "0.1.
|
|
1226
|
+
version = "0.1.64"
|
|
750
1227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
-
checksum = "
|
|
1228
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
752
1229
|
dependencies = [
|
|
753
1230
|
"android_system_properties",
|
|
754
1231
|
"core-foundation-sys",
|
|
@@ -770,9 +1247,9 @@ dependencies = [
|
|
|
770
1247
|
|
|
771
1248
|
[[package]]
|
|
772
1249
|
name = "icu_collections"
|
|
773
|
-
version = "2.
|
|
1250
|
+
version = "2.1.1"
|
|
774
1251
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
-
checksum = "
|
|
1252
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
776
1253
|
dependencies = [
|
|
777
1254
|
"displaydoc",
|
|
778
1255
|
"potential_utf",
|
|
@@ -783,9 +1260,9 @@ dependencies = [
|
|
|
783
1260
|
|
|
784
1261
|
[[package]]
|
|
785
1262
|
name = "icu_locale_core"
|
|
786
|
-
version = "2.
|
|
1263
|
+
version = "2.1.1"
|
|
787
1264
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
-
checksum = "
|
|
1265
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
789
1266
|
dependencies = [
|
|
790
1267
|
"displaydoc",
|
|
791
1268
|
"litemap",
|
|
@@ -796,11 +1273,10 @@ dependencies = [
|
|
|
796
1273
|
|
|
797
1274
|
[[package]]
|
|
798
1275
|
name = "icu_normalizer"
|
|
799
|
-
version = "2.
|
|
1276
|
+
version = "2.1.1"
|
|
800
1277
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
-
checksum = "
|
|
1278
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
802
1279
|
dependencies = [
|
|
803
|
-
"displaydoc",
|
|
804
1280
|
"icu_collections",
|
|
805
1281
|
"icu_normalizer_data",
|
|
806
1282
|
"icu_properties",
|
|
@@ -811,42 +1287,38 @@ dependencies = [
|
|
|
811
1287
|
|
|
812
1288
|
[[package]]
|
|
813
1289
|
name = "icu_normalizer_data"
|
|
814
|
-
version = "2.
|
|
1290
|
+
version = "2.1.1"
|
|
815
1291
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
816
|
-
checksum = "
|
|
1292
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
817
1293
|
|
|
818
1294
|
[[package]]
|
|
819
1295
|
name = "icu_properties"
|
|
820
|
-
version = "2.
|
|
1296
|
+
version = "2.1.2"
|
|
821
1297
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
-
checksum = "
|
|
1298
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
823
1299
|
dependencies = [
|
|
824
|
-
"displaydoc",
|
|
825
1300
|
"icu_collections",
|
|
826
1301
|
"icu_locale_core",
|
|
827
1302
|
"icu_properties_data",
|
|
828
1303
|
"icu_provider",
|
|
829
|
-
"potential_utf",
|
|
830
1304
|
"zerotrie",
|
|
831
1305
|
"zerovec",
|
|
832
1306
|
]
|
|
833
1307
|
|
|
834
1308
|
[[package]]
|
|
835
1309
|
name = "icu_properties_data"
|
|
836
|
-
version = "2.
|
|
1310
|
+
version = "2.1.2"
|
|
837
1311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
-
checksum = "
|
|
1312
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
839
1313
|
|
|
840
1314
|
[[package]]
|
|
841
1315
|
name = "icu_provider"
|
|
842
|
-
version = "2.
|
|
1316
|
+
version = "2.1.1"
|
|
843
1317
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
844
|
-
checksum = "
|
|
1318
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
845
1319
|
dependencies = [
|
|
846
1320
|
"displaydoc",
|
|
847
1321
|
"icu_locale_core",
|
|
848
|
-
"stable_deref_trait",
|
|
849
|
-
"tinystr",
|
|
850
1322
|
"writeable",
|
|
851
1323
|
"yoke",
|
|
852
1324
|
"zerofrom",
|
|
@@ -856,9 +1328,9 @@ dependencies = [
|
|
|
856
1328
|
|
|
857
1329
|
[[package]]
|
|
858
1330
|
name = "idna"
|
|
859
|
-
version = "1.0
|
|
1331
|
+
version = "1.1.0"
|
|
860
1332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
-
checksum = "
|
|
1333
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
862
1334
|
dependencies = [
|
|
863
1335
|
"idna_adapter",
|
|
864
1336
|
"smallvec",
|
|
@@ -887,25 +1359,28 @@ dependencies = [
|
|
|
887
1359
|
|
|
888
1360
|
[[package]]
|
|
889
1361
|
name = "indexmap"
|
|
890
|
-
version = "2.
|
|
1362
|
+
version = "2.13.0"
|
|
891
1363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
-
checksum = "
|
|
1364
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
893
1365
|
dependencies = [
|
|
894
1366
|
"equivalent",
|
|
895
|
-
"hashbrown 0.
|
|
1367
|
+
"hashbrown 0.16.1",
|
|
896
1368
|
]
|
|
897
1369
|
|
|
898
1370
|
[[package]]
|
|
899
1371
|
name = "indoc"
|
|
900
|
-
version = "2.0.
|
|
1372
|
+
version = "2.0.7"
|
|
901
1373
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
-
checksum = "
|
|
1374
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
1375
|
+
dependencies = [
|
|
1376
|
+
"rustversion",
|
|
1377
|
+
]
|
|
903
1378
|
|
|
904
1379
|
[[package]]
|
|
905
1380
|
name = "integer-encoding"
|
|
906
|
-
version = "4.0
|
|
1381
|
+
version = "4.1.0"
|
|
907
1382
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
-
checksum = "
|
|
1383
|
+
checksum = "14c00403deb17c3221a1fe4fb571b9ed0370b3dcd116553c77fa294a3d918699"
|
|
909
1384
|
|
|
910
1385
|
[[package]]
|
|
911
1386
|
name = "ipnet"
|
|
@@ -915,9 +1390,9 @@ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
|
915
1390
|
|
|
916
1391
|
[[package]]
|
|
917
1392
|
name = "iri-string"
|
|
918
|
-
version = "0.7.
|
|
1393
|
+
version = "0.7.10"
|
|
919
1394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
920
|
-
checksum = "
|
|
1395
|
+
checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
|
|
921
1396
|
dependencies = [
|
|
922
1397
|
"memchr",
|
|
923
1398
|
"serde",
|
|
@@ -934,9 +1409,9 @@ dependencies = [
|
|
|
934
1409
|
|
|
935
1410
|
[[package]]
|
|
936
1411
|
name = "itoa"
|
|
937
|
-
version = "1.0.
|
|
1412
|
+
version = "1.0.17"
|
|
938
1413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
939
|
-
checksum = "
|
|
1414
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
940
1415
|
|
|
941
1416
|
[[package]]
|
|
942
1417
|
name = "jni"
|
|
@@ -960,11 +1435,21 @@ version = "0.3.0"
|
|
|
960
1435
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
1436
|
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
|
|
962
1437
|
|
|
1438
|
+
[[package]]
|
|
1439
|
+
name = "jobserver"
|
|
1440
|
+
version = "0.1.34"
|
|
1441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1442
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1443
|
+
dependencies = [
|
|
1444
|
+
"getrandom 0.3.4",
|
|
1445
|
+
"libc",
|
|
1446
|
+
]
|
|
1447
|
+
|
|
963
1448
|
[[package]]
|
|
964
1449
|
name = "js-sys"
|
|
965
|
-
version = "0.3.
|
|
1450
|
+
version = "0.3.83"
|
|
966
1451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
967
|
-
checksum = "
|
|
1452
|
+
checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
|
|
968
1453
|
dependencies = [
|
|
969
1454
|
"once_cell",
|
|
970
1455
|
"wasm-bindgen",
|
|
@@ -978,15 +1463,15 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
|
978
1463
|
|
|
979
1464
|
[[package]]
|
|
980
1465
|
name = "libc"
|
|
981
|
-
version = "0.2.
|
|
1466
|
+
version = "0.2.180"
|
|
982
1467
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
983
|
-
checksum = "
|
|
1468
|
+
checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
|
|
984
1469
|
|
|
985
1470
|
[[package]]
|
|
986
1471
|
name = "libredox"
|
|
987
|
-
version = "0.1.
|
|
1472
|
+
version = "0.1.12"
|
|
988
1473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
-
checksum = "
|
|
1474
|
+
checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
|
|
990
1475
|
dependencies = [
|
|
991
1476
|
"bitflags",
|
|
992
1477
|
"libc",
|
|
@@ -1000,31 +1485,30 @@ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
|
1000
1485
|
|
|
1001
1486
|
[[package]]
|
|
1002
1487
|
name = "linux-raw-sys"
|
|
1003
|
-
version = "0.
|
|
1488
|
+
version = "0.11.0"
|
|
1004
1489
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
-
checksum = "
|
|
1490
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
1006
1491
|
|
|
1007
1492
|
[[package]]
|
|
1008
1493
|
name = "litemap"
|
|
1009
|
-
version = "0.8.
|
|
1494
|
+
version = "0.8.1"
|
|
1010
1495
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
-
checksum = "
|
|
1496
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
1012
1497
|
|
|
1013
1498
|
[[package]]
|
|
1014
1499
|
name = "lock_api"
|
|
1015
|
-
version = "0.4.
|
|
1500
|
+
version = "0.4.14"
|
|
1016
1501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
-
checksum = "
|
|
1502
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1018
1503
|
dependencies = [
|
|
1019
|
-
"autocfg",
|
|
1020
1504
|
"scopeguard",
|
|
1021
1505
|
]
|
|
1022
1506
|
|
|
1023
1507
|
[[package]]
|
|
1024
1508
|
name = "log"
|
|
1025
|
-
version = "0.4.
|
|
1509
|
+
version = "0.4.29"
|
|
1026
1510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
-
checksum = "
|
|
1511
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1028
1512
|
|
|
1029
1513
|
[[package]]
|
|
1030
1514
|
name = "logger_core"
|
|
@@ -1045,9 +1529,9 @@ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
|
|
|
1045
1529
|
|
|
1046
1530
|
[[package]]
|
|
1047
1531
|
name = "memchr"
|
|
1048
|
-
version = "2.7.
|
|
1532
|
+
version = "2.7.6"
|
|
1049
1533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
-
checksum = "
|
|
1534
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
1051
1535
|
|
|
1052
1536
|
[[package]]
|
|
1053
1537
|
name = "memoffset"
|
|
@@ -1071,17 +1555,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1071
1555
|
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1072
1556
|
dependencies = [
|
|
1073
1557
|
"adler2",
|
|
1558
|
+
"simd-adler32",
|
|
1074
1559
|
]
|
|
1075
1560
|
|
|
1076
1561
|
[[package]]
|
|
1077
1562
|
name = "mio"
|
|
1078
|
-
version = "1.
|
|
1563
|
+
version = "1.1.1"
|
|
1079
1564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
-
checksum = "
|
|
1565
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
1081
1566
|
dependencies = [
|
|
1082
1567
|
"libc",
|
|
1083
|
-
"wasi
|
|
1084
|
-
"windows-sys 0.
|
|
1568
|
+
"wasi",
|
|
1569
|
+
"windows-sys 0.61.2",
|
|
1085
1570
|
]
|
|
1086
1571
|
|
|
1087
1572
|
[[package]]
|
|
@@ -1104,12 +1589,11 @@ dependencies = [
|
|
|
1104
1589
|
|
|
1105
1590
|
[[package]]
|
|
1106
1591
|
name = "nu-ansi-term"
|
|
1107
|
-
version = "0.
|
|
1592
|
+
version = "0.50.3"
|
|
1108
1593
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1109
|
-
checksum = "
|
|
1594
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
1110
1595
|
dependencies = [
|
|
1111
|
-
"
|
|
1112
|
-
"winapi",
|
|
1596
|
+
"windows-sys 0.61.2",
|
|
1113
1597
|
]
|
|
1114
1598
|
|
|
1115
1599
|
[[package]]
|
|
@@ -1156,15 +1640,6 @@ dependencies = [
|
|
|
1156
1640
|
"libc",
|
|
1157
1641
|
]
|
|
1158
1642
|
|
|
1159
|
-
[[package]]
|
|
1160
|
-
name = "object"
|
|
1161
|
-
version = "0.36.7"
|
|
1162
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1163
|
-
checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
|
|
1164
|
-
dependencies = [
|
|
1165
|
-
"memchr",
|
|
1166
|
-
]
|
|
1167
|
-
|
|
1168
1643
|
[[package]]
|
|
1169
1644
|
name = "once_cell"
|
|
1170
1645
|
version = "1.21.3"
|
|
@@ -1173,9 +1648,9 @@ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
|
1173
1648
|
|
|
1174
1649
|
[[package]]
|
|
1175
1650
|
name = "openssl-probe"
|
|
1176
|
-
version = "0.
|
|
1651
|
+
version = "0.2.0"
|
|
1177
1652
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1178
|
-
checksum = "
|
|
1653
|
+
checksum = "9f50d9b3dabb09ecd771ad0aa242ca6894994c130308ca3d7684634df8037391"
|
|
1179
1654
|
|
|
1180
1655
|
[[package]]
|
|
1181
1656
|
name = "opentelemetry"
|
|
@@ -1199,7 +1674,7 @@ checksum = "10a8a7f5f6ba7c1b286c2fbca0454eaba116f63bbe69ed250b642d36fbb04d80"
|
|
|
1199
1674
|
dependencies = [
|
|
1200
1675
|
"async-trait",
|
|
1201
1676
|
"bytes",
|
|
1202
|
-
"http",
|
|
1677
|
+
"http 1.4.0",
|
|
1203
1678
|
"opentelemetry",
|
|
1204
1679
|
"reqwest",
|
|
1205
1680
|
]
|
|
@@ -1212,7 +1687,7 @@ checksum = "91cf61a1868dacc576bf2b2a1c3e9ab150af7272909e80085c3173384fe11f76"
|
|
|
1212
1687
|
dependencies = [
|
|
1213
1688
|
"async-trait",
|
|
1214
1689
|
"futures-core",
|
|
1215
|
-
"http",
|
|
1690
|
+
"http 1.4.0",
|
|
1216
1691
|
"opentelemetry",
|
|
1217
1692
|
"opentelemetry-http",
|
|
1218
1693
|
"opentelemetry-proto",
|
|
@@ -1265,16 +1740,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1265
1740
|
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
1266
1741
|
|
|
1267
1742
|
[[package]]
|
|
1268
|
-
name = "
|
|
1269
|
-
version = "0.
|
|
1743
|
+
name = "outref"
|
|
1744
|
+
version = "0.5.2"
|
|
1270
1745
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1271
|
-
checksum = "
|
|
1746
|
+
checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
1272
1747
|
|
|
1273
1748
|
[[package]]
|
|
1274
1749
|
name = "parking_lot"
|
|
1275
|
-
version = "0.12.
|
|
1750
|
+
version = "0.12.5"
|
|
1276
1751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1277
|
-
checksum = "
|
|
1752
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1278
1753
|
dependencies = [
|
|
1279
1754
|
"lock_api",
|
|
1280
1755
|
"parking_lot_core",
|
|
@@ -1282,22 +1757,22 @@ dependencies = [
|
|
|
1282
1757
|
|
|
1283
1758
|
[[package]]
|
|
1284
1759
|
name = "parking_lot_core"
|
|
1285
|
-
version = "0.9.
|
|
1760
|
+
version = "0.9.12"
|
|
1286
1761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1287
|
-
checksum = "
|
|
1762
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1288
1763
|
dependencies = [
|
|
1289
1764
|
"cfg-if",
|
|
1290
1765
|
"libc",
|
|
1291
1766
|
"redox_syscall",
|
|
1292
1767
|
"smallvec",
|
|
1293
|
-
"windows-
|
|
1768
|
+
"windows-link",
|
|
1294
1769
|
]
|
|
1295
1770
|
|
|
1296
1771
|
[[package]]
|
|
1297
1772
|
name = "percent-encoding"
|
|
1298
|
-
version = "2.3.
|
|
1773
|
+
version = "2.3.2"
|
|
1299
1774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1300
|
-
checksum = "
|
|
1775
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1301
1776
|
|
|
1302
1777
|
[[package]]
|
|
1303
1778
|
name = "pin-project"
|
|
@@ -1333,15 +1808,15 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
1333
1808
|
|
|
1334
1809
|
[[package]]
|
|
1335
1810
|
name = "portable-atomic"
|
|
1336
|
-
version = "1.
|
|
1811
|
+
version = "1.13.0"
|
|
1337
1812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1338
|
-
checksum = "
|
|
1813
|
+
checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
|
|
1339
1814
|
|
|
1340
1815
|
[[package]]
|
|
1341
1816
|
name = "potential_utf"
|
|
1342
|
-
version = "0.1.
|
|
1817
|
+
version = "0.1.4"
|
|
1343
1818
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1344
|
-
checksum = "
|
|
1819
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
1345
1820
|
dependencies = [
|
|
1346
1821
|
"zerovec",
|
|
1347
1822
|
]
|
|
@@ -1363,9 +1838,9 @@ dependencies = [
|
|
|
1363
1838
|
|
|
1364
1839
|
[[package]]
|
|
1365
1840
|
name = "proc-macro2"
|
|
1366
|
-
version = "1.0.
|
|
1841
|
+
version = "1.0.105"
|
|
1367
1842
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
|
-
checksum = "
|
|
1843
|
+
checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
|
|
1369
1844
|
dependencies = [
|
|
1370
1845
|
"unicode-ident",
|
|
1371
1846
|
]
|
|
@@ -1427,7 +1902,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1427
1902
|
checksum = "b4aeaa1f2460f1d348eeaeed86aea999ce98c1bded6f089ff8514c9d9dbdc973"
|
|
1428
1903
|
dependencies = [
|
|
1429
1904
|
"anyhow",
|
|
1430
|
-
"indexmap 2.
|
|
1905
|
+
"indexmap 2.13.0",
|
|
1431
1906
|
"log",
|
|
1432
1907
|
"protobuf",
|
|
1433
1908
|
"protobuf-support",
|
|
@@ -1447,11 +1922,10 @@ dependencies = [
|
|
|
1447
1922
|
|
|
1448
1923
|
[[package]]
|
|
1449
1924
|
name = "pyo3"
|
|
1450
|
-
version = "0.
|
|
1925
|
+
version = "0.25.1"
|
|
1451
1926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1452
|
-
checksum = "
|
|
1927
|
+
checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
|
|
1453
1928
|
dependencies = [
|
|
1454
|
-
"cfg-if",
|
|
1455
1929
|
"indoc",
|
|
1456
1930
|
"libc",
|
|
1457
1931
|
"memoffset",
|
|
@@ -1466,9 +1940,9 @@ dependencies = [
|
|
|
1466
1940
|
|
|
1467
1941
|
[[package]]
|
|
1468
1942
|
name = "pyo3-build-config"
|
|
1469
|
-
version = "0.
|
|
1943
|
+
version = "0.25.1"
|
|
1470
1944
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1471
|
-
checksum = "
|
|
1945
|
+
checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
|
|
1472
1946
|
dependencies = [
|
|
1473
1947
|
"once_cell",
|
|
1474
1948
|
"target-lexicon",
|
|
@@ -1476,9 +1950,9 @@ dependencies = [
|
|
|
1476
1950
|
|
|
1477
1951
|
[[package]]
|
|
1478
1952
|
name = "pyo3-ffi"
|
|
1479
|
-
version = "0.
|
|
1953
|
+
version = "0.25.1"
|
|
1480
1954
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1481
|
-
checksum = "
|
|
1955
|
+
checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
|
|
1482
1956
|
dependencies = [
|
|
1483
1957
|
"libc",
|
|
1484
1958
|
"pyo3-build-config",
|
|
@@ -1486,9 +1960,9 @@ dependencies = [
|
|
|
1486
1960
|
|
|
1487
1961
|
[[package]]
|
|
1488
1962
|
name = "pyo3-macros"
|
|
1489
|
-
version = "0.
|
|
1963
|
+
version = "0.25.1"
|
|
1490
1964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
-
checksum = "
|
|
1965
|
+
checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
|
|
1492
1966
|
dependencies = [
|
|
1493
1967
|
"proc-macro2",
|
|
1494
1968
|
"pyo3-macros-backend",
|
|
@@ -1498,9 +1972,9 @@ dependencies = [
|
|
|
1498
1972
|
|
|
1499
1973
|
[[package]]
|
|
1500
1974
|
name = "pyo3-macros-backend"
|
|
1501
|
-
version = "0.
|
|
1975
|
+
version = "0.25.1"
|
|
1502
1976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1503
|
-
checksum = "
|
|
1977
|
+
checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
|
|
1504
1978
|
dependencies = [
|
|
1505
1979
|
"heck",
|
|
1506
1980
|
"proc-macro2",
|
|
@@ -1511,9 +1985,9 @@ dependencies = [
|
|
|
1511
1985
|
|
|
1512
1986
|
[[package]]
|
|
1513
1987
|
name = "quote"
|
|
1514
|
-
version = "1.0.
|
|
1988
|
+
version = "1.0.43"
|
|
1515
1989
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1516
|
-
checksum = "
|
|
1990
|
+
checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
|
|
1517
1991
|
dependencies = [
|
|
1518
1992
|
"proc-macro2",
|
|
1519
1993
|
]
|
|
@@ -1537,9 +2011,9 @@ dependencies = [
|
|
|
1537
2011
|
|
|
1538
2012
|
[[package]]
|
|
1539
2013
|
name = "rand"
|
|
1540
|
-
version = "0.9.
|
|
2014
|
+
version = "0.9.2"
|
|
1541
2015
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1542
|
-
checksum = "
|
|
2016
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
1543
2017
|
dependencies = [
|
|
1544
2018
|
"rand_chacha 0.9.0",
|
|
1545
2019
|
"rand_core 0.9.3",
|
|
@@ -1580,7 +2054,7 @@ version = "0.9.3"
|
|
|
1580
2054
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1581
2055
|
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
1582
2056
|
dependencies = [
|
|
1583
|
-
"getrandom 0.3.
|
|
2057
|
+
"getrandom 0.3.4",
|
|
1584
2058
|
]
|
|
1585
2059
|
|
|
1586
2060
|
[[package]]
|
|
@@ -1602,18 +2076,17 @@ dependencies = [
|
|
|
1602
2076
|
"num-bigint",
|
|
1603
2077
|
"percent-encoding",
|
|
1604
2078
|
"pin-project-lite",
|
|
1605
|
-
"rand 0.9.
|
|
2079
|
+
"rand 0.9.2",
|
|
1606
2080
|
"rustls",
|
|
1607
|
-
"rustls-pemfile",
|
|
1608
2081
|
"rustls-pki-types",
|
|
1609
2082
|
"rustls-platform-verifier",
|
|
1610
2083
|
"ryu",
|
|
1611
|
-
"socket2",
|
|
1612
|
-
"strum",
|
|
1613
|
-
"strum_macros",
|
|
2084
|
+
"socket2 0.6.1",
|
|
2085
|
+
"strum 0.27.2",
|
|
2086
|
+
"strum_macros 0.27.2",
|
|
1614
2087
|
"telemetrylib",
|
|
1615
2088
|
"tokio",
|
|
1616
|
-
"tokio-retry2",
|
|
2089
|
+
"tokio-retry2 0.5.8",
|
|
1617
2090
|
"tokio-rustls",
|
|
1618
2091
|
"tokio-util",
|
|
1619
2092
|
"tracing",
|
|
@@ -1622,29 +2095,29 @@ dependencies = [
|
|
|
1622
2095
|
|
|
1623
2096
|
[[package]]
|
|
1624
2097
|
name = "redox_syscall"
|
|
1625
|
-
version = "0.5.
|
|
2098
|
+
version = "0.5.18"
|
|
1626
2099
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1627
|
-
checksum = "
|
|
2100
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1628
2101
|
dependencies = [
|
|
1629
2102
|
"bitflags",
|
|
1630
2103
|
]
|
|
1631
2104
|
|
|
1632
2105
|
[[package]]
|
|
1633
2106
|
name = "redox_users"
|
|
1634
|
-
version = "0.5.
|
|
2107
|
+
version = "0.5.2"
|
|
1635
2108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1636
|
-
checksum = "
|
|
2109
|
+
checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
|
1637
2110
|
dependencies = [
|
|
1638
2111
|
"getrandom 0.2.16",
|
|
1639
2112
|
"libredox",
|
|
1640
|
-
"thiserror 2.0.
|
|
2113
|
+
"thiserror 2.0.17",
|
|
1641
2114
|
]
|
|
1642
2115
|
|
|
1643
2116
|
[[package]]
|
|
1644
2117
|
name = "regex"
|
|
1645
|
-
version = "1.
|
|
2118
|
+
version = "1.12.2"
|
|
1646
2119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
|
-
checksum = "
|
|
2120
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
1648
2121
|
dependencies = [
|
|
1649
2122
|
"aho-corasick",
|
|
1650
2123
|
"memchr",
|
|
@@ -1654,34 +2127,40 @@ dependencies = [
|
|
|
1654
2127
|
|
|
1655
2128
|
[[package]]
|
|
1656
2129
|
name = "regex-automata"
|
|
1657
|
-
version = "0.4.
|
|
2130
|
+
version = "0.4.13"
|
|
1658
2131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1659
|
-
checksum = "
|
|
2132
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
1660
2133
|
dependencies = [
|
|
1661
2134
|
"aho-corasick",
|
|
1662
2135
|
"memchr",
|
|
1663
2136
|
"regex-syntax",
|
|
1664
2137
|
]
|
|
1665
2138
|
|
|
2139
|
+
[[package]]
|
|
2140
|
+
name = "regex-lite"
|
|
2141
|
+
version = "0.1.8"
|
|
2142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2143
|
+
checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da"
|
|
2144
|
+
|
|
1666
2145
|
[[package]]
|
|
1667
2146
|
name = "regex-syntax"
|
|
1668
|
-
version = "0.8.
|
|
2147
|
+
version = "0.8.8"
|
|
1669
2148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1670
|
-
checksum = "
|
|
2149
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
1671
2150
|
|
|
1672
2151
|
[[package]]
|
|
1673
2152
|
name = "reqwest"
|
|
1674
|
-
version = "0.12.
|
|
2153
|
+
version = "0.12.28"
|
|
1675
2154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1676
|
-
checksum = "
|
|
2155
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
1677
2156
|
dependencies = [
|
|
1678
2157
|
"base64",
|
|
1679
2158
|
"bytes",
|
|
1680
2159
|
"futures-channel",
|
|
1681
2160
|
"futures-core",
|
|
1682
2161
|
"futures-util",
|
|
1683
|
-
"http",
|
|
1684
|
-
"http-body",
|
|
2162
|
+
"http 1.4.0",
|
|
2163
|
+
"http-body 1.0.1",
|
|
1685
2164
|
"http-body-util",
|
|
1686
2165
|
"hyper",
|
|
1687
2166
|
"hyper-util",
|
|
@@ -1718,10 +2197,13 @@ dependencies = [
|
|
|
1718
2197
|
]
|
|
1719
2198
|
|
|
1720
2199
|
[[package]]
|
|
1721
|
-
name = "
|
|
1722
|
-
version = "0.1
|
|
2200
|
+
name = "rustc_version"
|
|
2201
|
+
version = "0.4.1"
|
|
1723
2202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1724
|
-
checksum = "
|
|
2203
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2204
|
+
dependencies = [
|
|
2205
|
+
"semver",
|
|
2206
|
+
]
|
|
1725
2207
|
|
|
1726
2208
|
[[package]]
|
|
1727
2209
|
name = "rustix"
|
|
@@ -1738,25 +2220,26 @@ dependencies = [
|
|
|
1738
2220
|
|
|
1739
2221
|
[[package]]
|
|
1740
2222
|
name = "rustix"
|
|
1741
|
-
version = "1.
|
|
2223
|
+
version = "1.1.3"
|
|
1742
2224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
-
checksum = "
|
|
2225
|
+
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
1744
2226
|
dependencies = [
|
|
1745
2227
|
"bitflags",
|
|
1746
2228
|
"errno",
|
|
1747
2229
|
"libc",
|
|
1748
|
-
"linux-raw-sys 0.
|
|
1749
|
-
"windows-sys 0.
|
|
2230
|
+
"linux-raw-sys 0.11.0",
|
|
2231
|
+
"windows-sys 0.61.2",
|
|
1750
2232
|
]
|
|
1751
2233
|
|
|
1752
2234
|
[[package]]
|
|
1753
2235
|
name = "rustls"
|
|
1754
|
-
version = "0.23.
|
|
2236
|
+
version = "0.23.36"
|
|
1755
2237
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1756
|
-
checksum = "
|
|
2238
|
+
checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
|
|
1757
2239
|
dependencies = [
|
|
2240
|
+
"aws-lc-rs",
|
|
2241
|
+
"log",
|
|
1758
2242
|
"once_cell",
|
|
1759
|
-
"ring",
|
|
1760
2243
|
"rustls-pki-types",
|
|
1761
2244
|
"rustls-webpki",
|
|
1762
2245
|
"subtle",
|
|
@@ -1765,9 +2248,9 @@ dependencies = [
|
|
|
1765
2248
|
|
|
1766
2249
|
[[package]]
|
|
1767
2250
|
name = "rustls-native-certs"
|
|
1768
|
-
version = "0.8.
|
|
2251
|
+
version = "0.8.3"
|
|
1769
2252
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1770
|
-
checksum = "
|
|
2253
|
+
checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
|
|
1771
2254
|
dependencies = [
|
|
1772
2255
|
"openssl-probe",
|
|
1773
2256
|
"rustls-pki-types",
|
|
@@ -1775,29 +2258,20 @@ dependencies = [
|
|
|
1775
2258
|
"security-framework",
|
|
1776
2259
|
]
|
|
1777
2260
|
|
|
1778
|
-
[[package]]
|
|
1779
|
-
name = "rustls-pemfile"
|
|
1780
|
-
version = "2.2.0"
|
|
1781
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1782
|
-
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
|
1783
|
-
dependencies = [
|
|
1784
|
-
"rustls-pki-types",
|
|
1785
|
-
]
|
|
1786
|
-
|
|
1787
2261
|
[[package]]
|
|
1788
2262
|
name = "rustls-pki-types"
|
|
1789
|
-
version = "1.
|
|
2263
|
+
version = "1.13.2"
|
|
1790
2264
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1791
|
-
checksum = "
|
|
2265
|
+
checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282"
|
|
1792
2266
|
dependencies = [
|
|
1793
2267
|
"zeroize",
|
|
1794
2268
|
]
|
|
1795
2269
|
|
|
1796
2270
|
[[package]]
|
|
1797
2271
|
name = "rustls-platform-verifier"
|
|
1798
|
-
version = "0.6.
|
|
2272
|
+
version = "0.6.2"
|
|
1799
2273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1800
|
-
checksum = "
|
|
2274
|
+
checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
|
|
1801
2275
|
dependencies = [
|
|
1802
2276
|
"core-foundation",
|
|
1803
2277
|
"core-foundation-sys",
|
|
@@ -1811,7 +2285,7 @@ dependencies = [
|
|
|
1811
2285
|
"security-framework",
|
|
1812
2286
|
"security-framework-sys",
|
|
1813
2287
|
"webpki-root-certs",
|
|
1814
|
-
"windows-sys 0.
|
|
2288
|
+
"windows-sys 0.61.2",
|
|
1815
2289
|
]
|
|
1816
2290
|
|
|
1817
2291
|
[[package]]
|
|
@@ -1822,10 +2296,11 @@ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
|
1822
2296
|
|
|
1823
2297
|
[[package]]
|
|
1824
2298
|
name = "rustls-webpki"
|
|
1825
|
-
version = "0.103.
|
|
2299
|
+
version = "0.103.8"
|
|
1826
2300
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1827
|
-
checksum = "
|
|
2301
|
+
checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
|
|
1828
2302
|
dependencies = [
|
|
2303
|
+
"aws-lc-rs",
|
|
1829
2304
|
"ring",
|
|
1830
2305
|
"rustls-pki-types",
|
|
1831
2306
|
"untrusted",
|
|
@@ -1833,15 +2308,15 @@ dependencies = [
|
|
|
1833
2308
|
|
|
1834
2309
|
[[package]]
|
|
1835
2310
|
name = "rustversion"
|
|
1836
|
-
version = "1.0.
|
|
2311
|
+
version = "1.0.22"
|
|
1837
2312
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1838
|
-
checksum = "
|
|
2313
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1839
2314
|
|
|
1840
2315
|
[[package]]
|
|
1841
2316
|
name = "ryu"
|
|
1842
|
-
version = "1.0.
|
|
2317
|
+
version = "1.0.22"
|
|
1843
2318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1844
|
-
checksum = "
|
|
2319
|
+
checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
|
|
1845
2320
|
|
|
1846
2321
|
[[package]]
|
|
1847
2322
|
name = "same-file"
|
|
@@ -1854,11 +2329,11 @@ dependencies = [
|
|
|
1854
2329
|
|
|
1855
2330
|
[[package]]
|
|
1856
2331
|
name = "schannel"
|
|
1857
|
-
version = "0.1.
|
|
2332
|
+
version = "0.1.28"
|
|
1858
2333
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1859
|
-
checksum = "
|
|
2334
|
+
checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
|
|
1860
2335
|
dependencies = [
|
|
1861
|
-
"windows-sys 0.
|
|
2336
|
+
"windows-sys 0.61.2",
|
|
1862
2337
|
]
|
|
1863
2338
|
|
|
1864
2339
|
[[package]]
|
|
@@ -1869,9 +2344,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
1869
2344
|
|
|
1870
2345
|
[[package]]
|
|
1871
2346
|
name = "security-framework"
|
|
1872
|
-
version = "3.
|
|
2347
|
+
version = "3.5.1"
|
|
1873
2348
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1874
|
-
checksum = "
|
|
2349
|
+
checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
|
|
1875
2350
|
dependencies = [
|
|
1876
2351
|
"bitflags",
|
|
1877
2352
|
"core-foundation",
|
|
@@ -1882,28 +2357,44 @@ dependencies = [
|
|
|
1882
2357
|
|
|
1883
2358
|
[[package]]
|
|
1884
2359
|
name = "security-framework-sys"
|
|
1885
|
-
version = "2.
|
|
2360
|
+
version = "2.15.0"
|
|
1886
2361
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1887
|
-
checksum = "
|
|
2362
|
+
checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
|
|
1888
2363
|
dependencies = [
|
|
1889
2364
|
"core-foundation-sys",
|
|
1890
2365
|
"libc",
|
|
1891
2366
|
]
|
|
1892
2367
|
|
|
2368
|
+
[[package]]
|
|
2369
|
+
name = "semver"
|
|
2370
|
+
version = "1.0.27"
|
|
2371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2372
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
2373
|
+
|
|
1893
2374
|
[[package]]
|
|
1894
2375
|
name = "serde"
|
|
1895
|
-
version = "1.0.
|
|
2376
|
+
version = "1.0.228"
|
|
2377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2378
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2379
|
+
dependencies = [
|
|
2380
|
+
"serde_core",
|
|
2381
|
+
"serde_derive",
|
|
2382
|
+
]
|
|
2383
|
+
|
|
2384
|
+
[[package]]
|
|
2385
|
+
name = "serde_core"
|
|
2386
|
+
version = "1.0.228"
|
|
1896
2387
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1897
|
-
checksum = "
|
|
2388
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1898
2389
|
dependencies = [
|
|
1899
2390
|
"serde_derive",
|
|
1900
2391
|
]
|
|
1901
2392
|
|
|
1902
2393
|
[[package]]
|
|
1903
2394
|
name = "serde_derive"
|
|
1904
|
-
version = "1.0.
|
|
2395
|
+
version = "1.0.228"
|
|
1905
2396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1906
|
-
checksum = "
|
|
2397
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1907
2398
|
dependencies = [
|
|
1908
2399
|
"proc-macro2",
|
|
1909
2400
|
"quote",
|
|
@@ -1912,14 +2403,15 @@ dependencies = [
|
|
|
1912
2403
|
|
|
1913
2404
|
[[package]]
|
|
1914
2405
|
name = "serde_json"
|
|
1915
|
-
version = "1.0.
|
|
2406
|
+
version = "1.0.149"
|
|
1916
2407
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1917
|
-
checksum = "
|
|
2408
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1918
2409
|
dependencies = [
|
|
1919
2410
|
"itoa",
|
|
1920
2411
|
"memchr",
|
|
1921
|
-
"ryu",
|
|
1922
2412
|
"serde",
|
|
2413
|
+
"serde_core",
|
|
2414
|
+
"zmij",
|
|
1923
2415
|
]
|
|
1924
2416
|
|
|
1925
2417
|
[[package]]
|
|
@@ -1940,6 +2432,17 @@ version = "1.0.1"
|
|
|
1940
2432
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1941
2433
|
checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
|
|
1942
2434
|
|
|
2435
|
+
[[package]]
|
|
2436
|
+
name = "sha2"
|
|
2437
|
+
version = "0.10.9"
|
|
2438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2439
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
2440
|
+
dependencies = [
|
|
2441
|
+
"cfg-if",
|
|
2442
|
+
"cpufeatures",
|
|
2443
|
+
"digest",
|
|
2444
|
+
]
|
|
2445
|
+
|
|
1943
2446
|
[[package]]
|
|
1944
2447
|
name = "sharded-slab"
|
|
1945
2448
|
version = "0.1.7"
|
|
@@ -1955,11 +2458,27 @@ version = "1.3.0"
|
|
|
1955
2458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1956
2459
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1957
2460
|
|
|
2461
|
+
[[package]]
|
|
2462
|
+
name = "signal-hook-registry"
|
|
2463
|
+
version = "1.4.8"
|
|
2464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2465
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
2466
|
+
dependencies = [
|
|
2467
|
+
"errno",
|
|
2468
|
+
"libc",
|
|
2469
|
+
]
|
|
2470
|
+
|
|
2471
|
+
[[package]]
|
|
2472
|
+
name = "simd-adler32"
|
|
2473
|
+
version = "0.3.8"
|
|
2474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2475
|
+
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
|
|
2476
|
+
|
|
1958
2477
|
[[package]]
|
|
1959
2478
|
name = "slab"
|
|
1960
|
-
version = "0.4.
|
|
2479
|
+
version = "0.4.11"
|
|
1961
2480
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1962
|
-
checksum = "
|
|
2481
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
1963
2482
|
|
|
1964
2483
|
[[package]]
|
|
1965
2484
|
name = "smallvec"
|
|
@@ -1977,23 +2496,39 @@ dependencies = [
|
|
|
1977
2496
|
"windows-sys 0.52.0",
|
|
1978
2497
|
]
|
|
1979
2498
|
|
|
2499
|
+
[[package]]
|
|
2500
|
+
name = "socket2"
|
|
2501
|
+
version = "0.6.1"
|
|
2502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2503
|
+
checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
|
|
2504
|
+
dependencies = [
|
|
2505
|
+
"libc",
|
|
2506
|
+
"windows-sys 0.60.2",
|
|
2507
|
+
]
|
|
2508
|
+
|
|
1980
2509
|
[[package]]
|
|
1981
2510
|
name = "stable_deref_trait"
|
|
1982
|
-
version = "1.2.
|
|
2511
|
+
version = "1.2.1"
|
|
1983
2512
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
|
-
checksum = "
|
|
2513
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1985
2514
|
|
|
1986
2515
|
[[package]]
|
|
1987
2516
|
name = "strum"
|
|
1988
|
-
version = "0.
|
|
2517
|
+
version = "0.26.3"
|
|
2518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2519
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
2520
|
+
|
|
2521
|
+
[[package]]
|
|
2522
|
+
name = "strum"
|
|
2523
|
+
version = "0.27.2"
|
|
1989
2524
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1990
|
-
checksum = "
|
|
2525
|
+
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
1991
2526
|
|
|
1992
2527
|
[[package]]
|
|
1993
2528
|
name = "strum_macros"
|
|
1994
|
-
version = "0.
|
|
2529
|
+
version = "0.26.4"
|
|
1995
2530
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1996
|
-
checksum = "
|
|
2531
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
|
1997
2532
|
dependencies = [
|
|
1998
2533
|
"heck",
|
|
1999
2534
|
"proc-macro2",
|
|
@@ -2002,6 +2537,18 @@ dependencies = [
|
|
|
2002
2537
|
"syn",
|
|
2003
2538
|
]
|
|
2004
2539
|
|
|
2540
|
+
[[package]]
|
|
2541
|
+
name = "strum_macros"
|
|
2542
|
+
version = "0.27.2"
|
|
2543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2544
|
+
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
|
|
2545
|
+
dependencies = [
|
|
2546
|
+
"heck",
|
|
2547
|
+
"proc-macro2",
|
|
2548
|
+
"quote",
|
|
2549
|
+
"syn",
|
|
2550
|
+
]
|
|
2551
|
+
|
|
2005
2552
|
[[package]]
|
|
2006
2553
|
name = "subtle"
|
|
2007
2554
|
version = "2.6.1"
|
|
@@ -2010,9 +2557,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
2010
2557
|
|
|
2011
2558
|
[[package]]
|
|
2012
2559
|
name = "syn"
|
|
2013
|
-
version = "2.0.
|
|
2560
|
+
version = "2.0.114"
|
|
2014
2561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2015
|
-
checksum = "
|
|
2562
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
2016
2563
|
dependencies = [
|
|
2017
2564
|
"proc-macro2",
|
|
2018
2565
|
"quote",
|
|
@@ -2041,9 +2588,9 @@ dependencies = [
|
|
|
2041
2588
|
|
|
2042
2589
|
[[package]]
|
|
2043
2590
|
name = "target-lexicon"
|
|
2044
|
-
version = "0.13.
|
|
2591
|
+
version = "0.13.4"
|
|
2045
2592
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2046
|
-
checksum = "
|
|
2593
|
+
checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
|
|
2047
2594
|
|
|
2048
2595
|
[[package]]
|
|
2049
2596
|
name = "telemetrylib"
|
|
@@ -2053,28 +2600,29 @@ dependencies = [
|
|
|
2053
2600
|
"chrono",
|
|
2054
2601
|
"futures-util",
|
|
2055
2602
|
"lazy_static",
|
|
2603
|
+
"logger_core",
|
|
2056
2604
|
"once_cell",
|
|
2057
2605
|
"opentelemetry",
|
|
2058
2606
|
"opentelemetry-otlp",
|
|
2059
2607
|
"opentelemetry_sdk",
|
|
2060
2608
|
"serde",
|
|
2061
2609
|
"serde_json",
|
|
2062
|
-
"thiserror 2.0.
|
|
2610
|
+
"thiserror 2.0.17",
|
|
2063
2611
|
"tokio",
|
|
2064
2612
|
"url",
|
|
2065
2613
|
]
|
|
2066
2614
|
|
|
2067
2615
|
[[package]]
|
|
2068
2616
|
name = "tempfile"
|
|
2069
|
-
version = "3.
|
|
2617
|
+
version = "3.24.0"
|
|
2070
2618
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2071
|
-
checksum = "
|
|
2619
|
+
checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
|
|
2072
2620
|
dependencies = [
|
|
2073
2621
|
"fastrand",
|
|
2074
|
-
"getrandom 0.3.
|
|
2622
|
+
"getrandom 0.3.4",
|
|
2075
2623
|
"once_cell",
|
|
2076
|
-
"rustix 1.
|
|
2077
|
-
"windows-sys 0.
|
|
2624
|
+
"rustix 1.1.3",
|
|
2625
|
+
"windows-sys 0.61.2",
|
|
2078
2626
|
]
|
|
2079
2627
|
|
|
2080
2628
|
[[package]]
|
|
@@ -2088,11 +2636,11 @@ dependencies = [
|
|
|
2088
2636
|
|
|
2089
2637
|
[[package]]
|
|
2090
2638
|
name = "thiserror"
|
|
2091
|
-
version = "2.0.
|
|
2639
|
+
version = "2.0.17"
|
|
2092
2640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2093
|
-
checksum = "
|
|
2641
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
2094
2642
|
dependencies = [
|
|
2095
|
-
"thiserror-impl 2.0.
|
|
2643
|
+
"thiserror-impl 2.0.17",
|
|
2096
2644
|
]
|
|
2097
2645
|
|
|
2098
2646
|
[[package]]
|
|
@@ -2108,9 +2656,9 @@ dependencies = [
|
|
|
2108
2656
|
|
|
2109
2657
|
[[package]]
|
|
2110
2658
|
name = "thiserror-impl"
|
|
2111
|
-
version = "2.0.
|
|
2659
|
+
version = "2.0.17"
|
|
2112
2660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2113
|
-
checksum = "
|
|
2661
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
2114
2662
|
dependencies = [
|
|
2115
2663
|
"proc-macro2",
|
|
2116
2664
|
"quote",
|
|
@@ -2128,9 +2676,9 @@ dependencies = [
|
|
|
2128
2676
|
|
|
2129
2677
|
[[package]]
|
|
2130
2678
|
name = "time"
|
|
2131
|
-
version = "0.3.
|
|
2679
|
+
version = "0.3.44"
|
|
2132
2680
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2133
|
-
checksum = "
|
|
2681
|
+
checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
|
|
2134
2682
|
dependencies = [
|
|
2135
2683
|
"deranged",
|
|
2136
2684
|
"itoa",
|
|
@@ -2143,15 +2691,15 @@ dependencies = [
|
|
|
2143
2691
|
|
|
2144
2692
|
[[package]]
|
|
2145
2693
|
name = "time-core"
|
|
2146
|
-
version = "0.1.
|
|
2694
|
+
version = "0.1.6"
|
|
2147
2695
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2148
|
-
checksum = "
|
|
2696
|
+
checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
|
|
2149
2697
|
|
|
2150
2698
|
[[package]]
|
|
2151
2699
|
name = "time-macros"
|
|
2152
|
-
version = "0.2.
|
|
2700
|
+
version = "0.2.24"
|
|
2153
2701
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2154
|
-
checksum = "
|
|
2702
|
+
checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
|
|
2155
2703
|
dependencies = [
|
|
2156
2704
|
"num-conv",
|
|
2157
2705
|
"time-core",
|
|
@@ -2159,9 +2707,9 @@ dependencies = [
|
|
|
2159
2707
|
|
|
2160
2708
|
[[package]]
|
|
2161
2709
|
name = "tinystr"
|
|
2162
|
-
version = "0.8.
|
|
2710
|
+
version = "0.8.2"
|
|
2163
2711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2164
|
-
checksum = "
|
|
2712
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
2165
2713
|
dependencies = [
|
|
2166
2714
|
"displaydoc",
|
|
2167
2715
|
"zerovec",
|
|
@@ -2169,25 +2717,25 @@ dependencies = [
|
|
|
2169
2717
|
|
|
2170
2718
|
[[package]]
|
|
2171
2719
|
name = "tokio"
|
|
2172
|
-
version = "1.
|
|
2720
|
+
version = "1.49.0"
|
|
2173
2721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2174
|
-
checksum = "
|
|
2722
|
+
checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
|
|
2175
2723
|
dependencies = [
|
|
2176
|
-
"backtrace",
|
|
2177
2724
|
"bytes",
|
|
2178
2725
|
"libc",
|
|
2179
2726
|
"mio",
|
|
2180
2727
|
"pin-project-lite",
|
|
2181
|
-
"
|
|
2728
|
+
"signal-hook-registry",
|
|
2729
|
+
"socket2 0.6.1",
|
|
2182
2730
|
"tokio-macros",
|
|
2183
|
-
"windows-sys 0.
|
|
2731
|
+
"windows-sys 0.61.2",
|
|
2184
2732
|
]
|
|
2185
2733
|
|
|
2186
2734
|
[[package]]
|
|
2187
2735
|
name = "tokio-macros"
|
|
2188
|
-
version = "2.
|
|
2736
|
+
version = "2.6.0"
|
|
2189
2737
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2190
|
-
checksum = "
|
|
2738
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
2191
2739
|
dependencies = [
|
|
2192
2740
|
"proc-macro2",
|
|
2193
2741
|
"quote",
|
|
@@ -2196,20 +2744,31 @@ dependencies = [
|
|
|
2196
2744
|
|
|
2197
2745
|
[[package]]
|
|
2198
2746
|
name = "tokio-retry2"
|
|
2199
|
-
version = "0.5.
|
|
2747
|
+
version = "0.5.8"
|
|
2748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2749
|
+
checksum = "3a0a122635e32bd827df297f311ca5e0292636bbd82f67ff84a4bedeab06dbeb"
|
|
2750
|
+
dependencies = [
|
|
2751
|
+
"pin-project",
|
|
2752
|
+
"rand 0.9.2",
|
|
2753
|
+
"tokio",
|
|
2754
|
+
]
|
|
2755
|
+
|
|
2756
|
+
[[package]]
|
|
2757
|
+
name = "tokio-retry2"
|
|
2758
|
+
version = "0.6.2"
|
|
2200
2759
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2201
|
-
checksum = "
|
|
2760
|
+
checksum = "e05e40fd65880de11383bbc693d3c636045ed1b5010ef1265a1d2b41d73334a1"
|
|
2202
2761
|
dependencies = [
|
|
2203
2762
|
"pin-project",
|
|
2204
|
-
"rand 0.9.
|
|
2763
|
+
"rand 0.9.2",
|
|
2205
2764
|
"tokio",
|
|
2206
2765
|
]
|
|
2207
2766
|
|
|
2208
2767
|
[[package]]
|
|
2209
2768
|
name = "tokio-rustls"
|
|
2210
|
-
version = "0.26.
|
|
2769
|
+
version = "0.26.4"
|
|
2211
2770
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2212
|
-
checksum = "
|
|
2771
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
2213
2772
|
dependencies = [
|
|
2214
2773
|
"rustls",
|
|
2215
2774
|
"tokio",
|
|
@@ -2217,9 +2776,9 @@ dependencies = [
|
|
|
2217
2776
|
|
|
2218
2777
|
[[package]]
|
|
2219
2778
|
name = "tokio-stream"
|
|
2220
|
-
version = "0.1.
|
|
2779
|
+
version = "0.1.18"
|
|
2221
2780
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2222
|
-
checksum = "
|
|
2781
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
2223
2782
|
dependencies = [
|
|
2224
2783
|
"futures-core",
|
|
2225
2784
|
"pin-project-lite",
|
|
@@ -2228,15 +2787,14 @@ dependencies = [
|
|
|
2228
2787
|
|
|
2229
2788
|
[[package]]
|
|
2230
2789
|
name = "tokio-util"
|
|
2231
|
-
version = "0.7.
|
|
2790
|
+
version = "0.7.18"
|
|
2232
2791
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2233
|
-
checksum = "
|
|
2792
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
2234
2793
|
dependencies = [
|
|
2235
2794
|
"bytes",
|
|
2236
2795
|
"futures-core",
|
|
2237
2796
|
"futures-sink",
|
|
2238
2797
|
"futures-util",
|
|
2239
|
-
"hashbrown 0.15.4",
|
|
2240
2798
|
"pin-project-lite",
|
|
2241
2799
|
"tokio",
|
|
2242
2800
|
]
|
|
@@ -2253,8 +2811,8 @@ dependencies = [
|
|
|
2253
2811
|
"base64",
|
|
2254
2812
|
"bytes",
|
|
2255
2813
|
"h2",
|
|
2256
|
-
"http",
|
|
2257
|
-
"http-body",
|
|
2814
|
+
"http 1.4.0",
|
|
2815
|
+
"http-body 1.0.1",
|
|
2258
2816
|
"http-body-util",
|
|
2259
2817
|
"hyper",
|
|
2260
2818
|
"hyper-timeout",
|
|
@@ -2262,7 +2820,7 @@ dependencies = [
|
|
|
2262
2820
|
"percent-encoding",
|
|
2263
2821
|
"pin-project",
|
|
2264
2822
|
"prost",
|
|
2265
|
-
"socket2",
|
|
2823
|
+
"socket2 0.5.10",
|
|
2266
2824
|
"tokio",
|
|
2267
2825
|
"tokio-stream",
|
|
2268
2826
|
"tower 0.4.13",
|
|
@@ -2308,15 +2866,15 @@ dependencies = [
|
|
|
2308
2866
|
|
|
2309
2867
|
[[package]]
|
|
2310
2868
|
name = "tower-http"
|
|
2311
|
-
version = "0.6.
|
|
2869
|
+
version = "0.6.8"
|
|
2312
2870
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2313
|
-
checksum = "
|
|
2871
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
2314
2872
|
dependencies = [
|
|
2315
2873
|
"bitflags",
|
|
2316
2874
|
"bytes",
|
|
2317
2875
|
"futures-util",
|
|
2318
|
-
"http",
|
|
2319
|
-
"http-body",
|
|
2876
|
+
"http 1.4.0",
|
|
2877
|
+
"http-body 1.0.1",
|
|
2320
2878
|
"iri-string",
|
|
2321
2879
|
"pin-project-lite",
|
|
2322
2880
|
"tower 0.5.2",
|
|
@@ -2338,9 +2896,9 @@ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
|
2338
2896
|
|
|
2339
2897
|
[[package]]
|
|
2340
2898
|
name = "tracing"
|
|
2341
|
-
version = "0.1.
|
|
2899
|
+
version = "0.1.44"
|
|
2342
2900
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2343
|
-
checksum = "
|
|
2901
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
2344
2902
|
dependencies = [
|
|
2345
2903
|
"pin-project-lite",
|
|
2346
2904
|
"tracing-attributes",
|
|
@@ -2349,21 +2907,21 @@ dependencies = [
|
|
|
2349
2907
|
|
|
2350
2908
|
[[package]]
|
|
2351
2909
|
name = "tracing-appender"
|
|
2352
|
-
version = "0.2.
|
|
2910
|
+
version = "0.2.4"
|
|
2353
2911
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2354
|
-
checksum = "
|
|
2912
|
+
checksum = "786d480bce6247ab75f005b14ae1624ad978d3029d9113f0a22fa1ac773faeaf"
|
|
2355
2913
|
dependencies = [
|
|
2356
2914
|
"crossbeam-channel",
|
|
2357
|
-
"thiserror
|
|
2915
|
+
"thiserror 2.0.17",
|
|
2358
2916
|
"time",
|
|
2359
2917
|
"tracing-subscriber",
|
|
2360
2918
|
]
|
|
2361
2919
|
|
|
2362
2920
|
[[package]]
|
|
2363
2921
|
name = "tracing-attributes"
|
|
2364
|
-
version = "0.1.
|
|
2922
|
+
version = "0.1.31"
|
|
2365
2923
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2366
|
-
checksum = "
|
|
2924
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
2367
2925
|
dependencies = [
|
|
2368
2926
|
"proc-macro2",
|
|
2369
2927
|
"quote",
|
|
@@ -2372,9 +2930,9 @@ dependencies = [
|
|
|
2372
2930
|
|
|
2373
2931
|
[[package]]
|
|
2374
2932
|
name = "tracing-core"
|
|
2375
|
-
version = "0.1.
|
|
2933
|
+
version = "0.1.36"
|
|
2376
2934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2377
|
-
checksum = "
|
|
2935
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
2378
2936
|
dependencies = [
|
|
2379
2937
|
"once_cell",
|
|
2380
2938
|
"valuable",
|
|
@@ -2393,9 +2951,9 @@ dependencies = [
|
|
|
2393
2951
|
|
|
2394
2952
|
[[package]]
|
|
2395
2953
|
name = "tracing-subscriber"
|
|
2396
|
-
version = "0.3.
|
|
2954
|
+
version = "0.3.22"
|
|
2397
2955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2398
|
-
checksum = "
|
|
2956
|
+
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
|
|
2399
2957
|
dependencies = [
|
|
2400
2958
|
"nu-ansi-term",
|
|
2401
2959
|
"sharded-slab",
|
|
@@ -2411,11 +2969,17 @@ version = "0.2.5"
|
|
|
2411
2969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2412
2970
|
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
2413
2971
|
|
|
2972
|
+
[[package]]
|
|
2973
|
+
name = "typenum"
|
|
2974
|
+
version = "1.19.0"
|
|
2975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2976
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
2977
|
+
|
|
2414
2978
|
[[package]]
|
|
2415
2979
|
name = "unicode-ident"
|
|
2416
|
-
version = "1.0.
|
|
2980
|
+
version = "1.0.22"
|
|
2417
2981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2418
|
-
checksum = "
|
|
2982
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
2419
2983
|
|
|
2420
2984
|
[[package]]
|
|
2421
2985
|
name = "unindent"
|
|
@@ -2431,15 +2995,22 @@ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
|
2431
2995
|
|
|
2432
2996
|
[[package]]
|
|
2433
2997
|
name = "url"
|
|
2434
|
-
version = "2.5.
|
|
2998
|
+
version = "2.5.8"
|
|
2435
2999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2436
|
-
checksum = "
|
|
3000
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
2437
3001
|
dependencies = [
|
|
2438
3002
|
"form_urlencoded",
|
|
2439
3003
|
"idna",
|
|
2440
3004
|
"percent-encoding",
|
|
3005
|
+
"serde",
|
|
2441
3006
|
]
|
|
2442
3007
|
|
|
3008
|
+
[[package]]
|
|
3009
|
+
name = "urlencoding"
|
|
3010
|
+
version = "2.1.3"
|
|
3011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3012
|
+
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
|
3013
|
+
|
|
2443
3014
|
[[package]]
|
|
2444
3015
|
name = "utf8_iter"
|
|
2445
3016
|
version = "1.0.4"
|
|
@@ -2448,19 +3019,19 @@ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
|
2448
3019
|
|
|
2449
3020
|
[[package]]
|
|
2450
3021
|
name = "uuid"
|
|
2451
|
-
version = "1.
|
|
3022
|
+
version = "1.19.0"
|
|
2452
3023
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2453
|
-
checksum = "
|
|
3024
|
+
checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
|
|
2454
3025
|
dependencies = [
|
|
2455
|
-
"getrandom 0.3.
|
|
3026
|
+
"getrandom 0.3.4",
|
|
2456
3027
|
"js-sys",
|
|
2457
|
-
"rand 0.9.
|
|
3028
|
+
"rand 0.9.2",
|
|
2458
3029
|
"wasm-bindgen",
|
|
2459
3030
|
]
|
|
2460
3031
|
|
|
2461
3032
|
[[package]]
|
|
2462
3033
|
name = "valkey-glide"
|
|
2463
|
-
version = "
|
|
3034
|
+
version = "0.0.0"
|
|
2464
3035
|
dependencies = [
|
|
2465
3036
|
"bytes",
|
|
2466
3037
|
"glide-core",
|
|
@@ -2475,6 +3046,12 @@ version = "0.1.1"
|
|
|
2475
3046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2476
3047
|
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
2477
3048
|
|
|
3049
|
+
[[package]]
|
|
3050
|
+
name = "version_check"
|
|
3051
|
+
version = "0.9.5"
|
|
3052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3053
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3054
|
+
|
|
2478
3055
|
[[package]]
|
|
2479
3056
|
name = "versions"
|
|
2480
3057
|
version = "7.0.0"
|
|
@@ -2485,6 +3062,12 @@ dependencies = [
|
|
|
2485
3062
|
"nom",
|
|
2486
3063
|
]
|
|
2487
3064
|
|
|
3065
|
+
[[package]]
|
|
3066
|
+
name = "vsimd"
|
|
3067
|
+
version = "0.8.0"
|
|
3068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3069
|
+
checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
|
|
3070
|
+
|
|
2488
3071
|
[[package]]
|
|
2489
3072
|
name = "walkdir"
|
|
2490
3073
|
version = "2.5.0"
|
|
@@ -2511,45 +3094,32 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2511
3094
|
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2512
3095
|
|
|
2513
3096
|
[[package]]
|
|
2514
|
-
name = "
|
|
2515
|
-
version = "0.
|
|
3097
|
+
name = "wasip2"
|
|
3098
|
+
version = "1.0.1+wasi-0.2.4"
|
|
2516
3099
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2517
|
-
checksum = "
|
|
3100
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
2518
3101
|
dependencies = [
|
|
2519
|
-
"wit-bindgen
|
|
3102
|
+
"wit-bindgen",
|
|
2520
3103
|
]
|
|
2521
3104
|
|
|
2522
3105
|
[[package]]
|
|
2523
3106
|
name = "wasm-bindgen"
|
|
2524
|
-
version = "0.2.
|
|
3107
|
+
version = "0.2.106"
|
|
2525
3108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2526
|
-
checksum = "
|
|
3109
|
+
checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
|
|
2527
3110
|
dependencies = [
|
|
2528
3111
|
"cfg-if",
|
|
2529
3112
|
"once_cell",
|
|
2530
3113
|
"rustversion",
|
|
2531
3114
|
"wasm-bindgen-macro",
|
|
2532
|
-
]
|
|
2533
|
-
|
|
2534
|
-
[[package]]
|
|
2535
|
-
name = "wasm-bindgen-backend"
|
|
2536
|
-
version = "0.2.100"
|
|
2537
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2538
|
-
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
|
2539
|
-
dependencies = [
|
|
2540
|
-
"bumpalo",
|
|
2541
|
-
"log",
|
|
2542
|
-
"proc-macro2",
|
|
2543
|
-
"quote",
|
|
2544
|
-
"syn",
|
|
2545
3115
|
"wasm-bindgen-shared",
|
|
2546
3116
|
]
|
|
2547
3117
|
|
|
2548
3118
|
[[package]]
|
|
2549
3119
|
name = "wasm-bindgen-futures"
|
|
2550
|
-
version = "0.4.
|
|
3120
|
+
version = "0.4.56"
|
|
2551
3121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2552
|
-
checksum = "
|
|
3122
|
+
checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
|
|
2553
3123
|
dependencies = [
|
|
2554
3124
|
"cfg-if",
|
|
2555
3125
|
"js-sys",
|
|
@@ -2560,9 +3130,9 @@ dependencies = [
|
|
|
2560
3130
|
|
|
2561
3131
|
[[package]]
|
|
2562
3132
|
name = "wasm-bindgen-macro"
|
|
2563
|
-
version = "0.2.
|
|
3133
|
+
version = "0.2.106"
|
|
2564
3134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2565
|
-
checksum = "
|
|
3135
|
+
checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
|
|
2566
3136
|
dependencies = [
|
|
2567
3137
|
"quote",
|
|
2568
3138
|
"wasm-bindgen-macro-support",
|
|
@@ -2570,31 +3140,31 @@ dependencies = [
|
|
|
2570
3140
|
|
|
2571
3141
|
[[package]]
|
|
2572
3142
|
name = "wasm-bindgen-macro-support"
|
|
2573
|
-
version = "0.2.
|
|
3143
|
+
version = "0.2.106"
|
|
2574
3144
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2575
|
-
checksum = "
|
|
3145
|
+
checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
|
|
2576
3146
|
dependencies = [
|
|
3147
|
+
"bumpalo",
|
|
2577
3148
|
"proc-macro2",
|
|
2578
3149
|
"quote",
|
|
2579
3150
|
"syn",
|
|
2580
|
-
"wasm-bindgen-backend",
|
|
2581
3151
|
"wasm-bindgen-shared",
|
|
2582
3152
|
]
|
|
2583
3153
|
|
|
2584
3154
|
[[package]]
|
|
2585
3155
|
name = "wasm-bindgen-shared"
|
|
2586
|
-
version = "0.2.
|
|
3156
|
+
version = "0.2.106"
|
|
2587
3157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2588
|
-
checksum = "
|
|
3158
|
+
checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
|
|
2589
3159
|
dependencies = [
|
|
2590
3160
|
"unicode-ident",
|
|
2591
3161
|
]
|
|
2592
3162
|
|
|
2593
3163
|
[[package]]
|
|
2594
3164
|
name = "web-sys"
|
|
2595
|
-
version = "0.3.
|
|
3165
|
+
version = "0.3.83"
|
|
2596
3166
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2597
|
-
checksum = "
|
|
3167
|
+
checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
|
|
2598
3168
|
dependencies = [
|
|
2599
3169
|
"js-sys",
|
|
2600
3170
|
"wasm-bindgen",
|
|
@@ -2602,9 +3172,9 @@ dependencies = [
|
|
|
2602
3172
|
|
|
2603
3173
|
[[package]]
|
|
2604
3174
|
name = "webpki-root-certs"
|
|
2605
|
-
version = "1.0.
|
|
3175
|
+
version = "1.0.5"
|
|
2606
3176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2607
|
-
checksum = "
|
|
3177
|
+
checksum = "36a29fc0408b113f68cf32637857ab740edfafdf460c326cd2afaa2d84cc05dc"
|
|
2608
3178
|
dependencies = [
|
|
2609
3179
|
"rustls-pki-types",
|
|
2610
3180
|
]
|
|
@@ -2621,42 +3191,20 @@ dependencies = [
|
|
|
2621
3191
|
"rustix 0.38.44",
|
|
2622
3192
|
]
|
|
2623
3193
|
|
|
2624
|
-
[[package]]
|
|
2625
|
-
name = "winapi"
|
|
2626
|
-
version = "0.3.9"
|
|
2627
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2628
|
-
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
2629
|
-
dependencies = [
|
|
2630
|
-
"winapi-i686-pc-windows-gnu",
|
|
2631
|
-
"winapi-x86_64-pc-windows-gnu",
|
|
2632
|
-
]
|
|
2633
|
-
|
|
2634
|
-
[[package]]
|
|
2635
|
-
name = "winapi-i686-pc-windows-gnu"
|
|
2636
|
-
version = "0.4.0"
|
|
2637
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2638
|
-
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2639
|
-
|
|
2640
3194
|
[[package]]
|
|
2641
3195
|
name = "winapi-util"
|
|
2642
|
-
version = "0.1.
|
|
3196
|
+
version = "0.1.11"
|
|
2643
3197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2644
|
-
checksum = "
|
|
3198
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
2645
3199
|
dependencies = [
|
|
2646
|
-
"windows-sys 0.
|
|
3200
|
+
"windows-sys 0.61.2",
|
|
2647
3201
|
]
|
|
2648
3202
|
|
|
2649
|
-
[[package]]
|
|
2650
|
-
name = "winapi-x86_64-pc-windows-gnu"
|
|
2651
|
-
version = "0.4.0"
|
|
2652
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2653
|
-
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2654
|
-
|
|
2655
3203
|
[[package]]
|
|
2656
3204
|
name = "windows-core"
|
|
2657
|
-
version = "0.
|
|
3205
|
+
version = "0.62.2"
|
|
2658
3206
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2659
|
-
checksum = "
|
|
3207
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
2660
3208
|
dependencies = [
|
|
2661
3209
|
"windows-implement",
|
|
2662
3210
|
"windows-interface",
|
|
@@ -2667,9 +3215,9 @@ dependencies = [
|
|
|
2667
3215
|
|
|
2668
3216
|
[[package]]
|
|
2669
3217
|
name = "windows-implement"
|
|
2670
|
-
version = "0.60.
|
|
3218
|
+
version = "0.60.2"
|
|
2671
3219
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2672
|
-
checksum = "
|
|
3220
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
2673
3221
|
dependencies = [
|
|
2674
3222
|
"proc-macro2",
|
|
2675
3223
|
"quote",
|
|
@@ -2678,9 +3226,9 @@ dependencies = [
|
|
|
2678
3226
|
|
|
2679
3227
|
[[package]]
|
|
2680
3228
|
name = "windows-interface"
|
|
2681
|
-
version = "0.59.
|
|
3229
|
+
version = "0.59.3"
|
|
2682
3230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2683
|
-
checksum = "
|
|
3231
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
2684
3232
|
dependencies = [
|
|
2685
3233
|
"proc-macro2",
|
|
2686
3234
|
"quote",
|
|
@@ -2689,24 +3237,24 @@ dependencies = [
|
|
|
2689
3237
|
|
|
2690
3238
|
[[package]]
|
|
2691
3239
|
name = "windows-link"
|
|
2692
|
-
version = "0.1
|
|
3240
|
+
version = "0.2.1"
|
|
2693
3241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2694
|
-
checksum = "
|
|
3242
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2695
3243
|
|
|
2696
3244
|
[[package]]
|
|
2697
3245
|
name = "windows-result"
|
|
2698
|
-
version = "0.
|
|
3246
|
+
version = "0.4.1"
|
|
2699
3247
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2700
|
-
checksum = "
|
|
3248
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
2701
3249
|
dependencies = [
|
|
2702
3250
|
"windows-link",
|
|
2703
3251
|
]
|
|
2704
3252
|
|
|
2705
3253
|
[[package]]
|
|
2706
3254
|
name = "windows-strings"
|
|
2707
|
-
version = "0.
|
|
3255
|
+
version = "0.5.1"
|
|
2708
3256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2709
|
-
checksum = "
|
|
3257
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
2710
3258
|
dependencies = [
|
|
2711
3259
|
"windows-link",
|
|
2712
3260
|
]
|
|
@@ -2744,7 +3292,16 @@ version = "0.60.2"
|
|
|
2744
3292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2745
3293
|
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
2746
3294
|
dependencies = [
|
|
2747
|
-
"windows-targets 0.53.
|
|
3295
|
+
"windows-targets 0.53.5",
|
|
3296
|
+
]
|
|
3297
|
+
|
|
3298
|
+
[[package]]
|
|
3299
|
+
name = "windows-sys"
|
|
3300
|
+
version = "0.61.2"
|
|
3301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3302
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
3303
|
+
dependencies = [
|
|
3304
|
+
"windows-link",
|
|
2748
3305
|
]
|
|
2749
3306
|
|
|
2750
3307
|
[[package]]
|
|
@@ -2780,18 +3337,19 @@ dependencies = [
|
|
|
2780
3337
|
|
|
2781
3338
|
[[package]]
|
|
2782
3339
|
name = "windows-targets"
|
|
2783
|
-
version = "0.53.
|
|
3340
|
+
version = "0.53.5"
|
|
2784
3341
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2785
|
-
checksum = "
|
|
3342
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
2786
3343
|
dependencies = [
|
|
2787
|
-
"
|
|
2788
|
-
"
|
|
2789
|
-
"
|
|
2790
|
-
"
|
|
2791
|
-
"
|
|
2792
|
-
"
|
|
2793
|
-
"
|
|
2794
|
-
"
|
|
3344
|
+
"windows-link",
|
|
3345
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
3346
|
+
"windows_aarch64_msvc 0.53.1",
|
|
3347
|
+
"windows_i686_gnu 0.53.1",
|
|
3348
|
+
"windows_i686_gnullvm 0.53.1",
|
|
3349
|
+
"windows_i686_msvc 0.53.1",
|
|
3350
|
+
"windows_x86_64_gnu 0.53.1",
|
|
3351
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
3352
|
+
"windows_x86_64_msvc 0.53.1",
|
|
2795
3353
|
]
|
|
2796
3354
|
|
|
2797
3355
|
[[package]]
|
|
@@ -2808,9 +3366,9 @@ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
|
2808
3366
|
|
|
2809
3367
|
[[package]]
|
|
2810
3368
|
name = "windows_aarch64_gnullvm"
|
|
2811
|
-
version = "0.53.
|
|
3369
|
+
version = "0.53.1"
|
|
2812
3370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2813
|
-
checksum = "
|
|
3371
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
2814
3372
|
|
|
2815
3373
|
[[package]]
|
|
2816
3374
|
name = "windows_aarch64_msvc"
|
|
@@ -2826,9 +3384,9 @@ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
|
2826
3384
|
|
|
2827
3385
|
[[package]]
|
|
2828
3386
|
name = "windows_aarch64_msvc"
|
|
2829
|
-
version = "0.53.
|
|
3387
|
+
version = "0.53.1"
|
|
2830
3388
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2831
|
-
checksum = "
|
|
3389
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
2832
3390
|
|
|
2833
3391
|
[[package]]
|
|
2834
3392
|
name = "windows_i686_gnu"
|
|
@@ -2844,9 +3402,9 @@ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
|
2844
3402
|
|
|
2845
3403
|
[[package]]
|
|
2846
3404
|
name = "windows_i686_gnu"
|
|
2847
|
-
version = "0.53.
|
|
3405
|
+
version = "0.53.1"
|
|
2848
3406
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2849
|
-
checksum = "
|
|
3407
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
2850
3408
|
|
|
2851
3409
|
[[package]]
|
|
2852
3410
|
name = "windows_i686_gnullvm"
|
|
@@ -2856,9 +3414,9 @@ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
|
2856
3414
|
|
|
2857
3415
|
[[package]]
|
|
2858
3416
|
name = "windows_i686_gnullvm"
|
|
2859
|
-
version = "0.53.
|
|
3417
|
+
version = "0.53.1"
|
|
2860
3418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2861
|
-
checksum = "
|
|
3419
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
2862
3420
|
|
|
2863
3421
|
[[package]]
|
|
2864
3422
|
name = "windows_i686_msvc"
|
|
@@ -2874,9 +3432,9 @@ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
|
2874
3432
|
|
|
2875
3433
|
[[package]]
|
|
2876
3434
|
name = "windows_i686_msvc"
|
|
2877
|
-
version = "0.53.
|
|
3435
|
+
version = "0.53.1"
|
|
2878
3436
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2879
|
-
checksum = "
|
|
3437
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
2880
3438
|
|
|
2881
3439
|
[[package]]
|
|
2882
3440
|
name = "windows_x86_64_gnu"
|
|
@@ -2892,9 +3450,9 @@ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
|
2892
3450
|
|
|
2893
3451
|
[[package]]
|
|
2894
3452
|
name = "windows_x86_64_gnu"
|
|
2895
|
-
version = "0.53.
|
|
3453
|
+
version = "0.53.1"
|
|
2896
3454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2897
|
-
checksum = "
|
|
3455
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
2898
3456
|
|
|
2899
3457
|
[[package]]
|
|
2900
3458
|
name = "windows_x86_64_gnullvm"
|
|
@@ -2910,9 +3468,9 @@ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
|
2910
3468
|
|
|
2911
3469
|
[[package]]
|
|
2912
3470
|
name = "windows_x86_64_gnullvm"
|
|
2913
|
-
version = "0.53.
|
|
3471
|
+
version = "0.53.1"
|
|
2914
3472
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2915
|
-
checksum = "
|
|
3473
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
2916
3474
|
|
|
2917
3475
|
[[package]]
|
|
2918
3476
|
name = "windows_x86_64_msvc"
|
|
@@ -2928,32 +3486,34 @@ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
|
2928
3486
|
|
|
2929
3487
|
[[package]]
|
|
2930
3488
|
name = "windows_x86_64_msvc"
|
|
2931
|
-
version = "0.53.
|
|
3489
|
+
version = "0.53.1"
|
|
2932
3490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2933
|
-
checksum = "
|
|
3491
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
2934
3492
|
|
|
2935
3493
|
[[package]]
|
|
2936
|
-
name = "wit-bindgen
|
|
2937
|
-
version = "0.
|
|
3494
|
+
name = "wit-bindgen"
|
|
3495
|
+
version = "0.46.0"
|
|
2938
3496
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2939
|
-
checksum = "
|
|
2940
|
-
dependencies = [
|
|
2941
|
-
"bitflags",
|
|
2942
|
-
]
|
|
3497
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
2943
3498
|
|
|
2944
3499
|
[[package]]
|
|
2945
3500
|
name = "writeable"
|
|
2946
|
-
version = "0.6.
|
|
3501
|
+
version = "0.6.2"
|
|
3502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3503
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
3504
|
+
|
|
3505
|
+
[[package]]
|
|
3506
|
+
name = "xmlparser"
|
|
3507
|
+
version = "0.13.6"
|
|
2947
3508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2948
|
-
checksum = "
|
|
3509
|
+
checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4"
|
|
2949
3510
|
|
|
2950
3511
|
[[package]]
|
|
2951
3512
|
name = "yoke"
|
|
2952
|
-
version = "0.8.
|
|
3513
|
+
version = "0.8.1"
|
|
2953
3514
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2954
|
-
checksum = "
|
|
3515
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
2955
3516
|
dependencies = [
|
|
2956
|
-
"serde",
|
|
2957
3517
|
"stable_deref_trait",
|
|
2958
3518
|
"yoke-derive",
|
|
2959
3519
|
"zerofrom",
|
|
@@ -2961,9 +3521,9 @@ dependencies = [
|
|
|
2961
3521
|
|
|
2962
3522
|
[[package]]
|
|
2963
3523
|
name = "yoke-derive"
|
|
2964
|
-
version = "0.8.
|
|
3524
|
+
version = "0.8.1"
|
|
2965
3525
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2966
|
-
checksum = "
|
|
3526
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
2967
3527
|
dependencies = [
|
|
2968
3528
|
"proc-macro2",
|
|
2969
3529
|
"quote",
|
|
@@ -2973,18 +3533,18 @@ dependencies = [
|
|
|
2973
3533
|
|
|
2974
3534
|
[[package]]
|
|
2975
3535
|
name = "zerocopy"
|
|
2976
|
-
version = "0.8.
|
|
3536
|
+
version = "0.8.33"
|
|
2977
3537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2978
|
-
checksum = "
|
|
3538
|
+
checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd"
|
|
2979
3539
|
dependencies = [
|
|
2980
3540
|
"zerocopy-derive",
|
|
2981
3541
|
]
|
|
2982
3542
|
|
|
2983
3543
|
[[package]]
|
|
2984
3544
|
name = "zerocopy-derive"
|
|
2985
|
-
version = "0.8.
|
|
3545
|
+
version = "0.8.33"
|
|
2986
3546
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2987
|
-
checksum = "
|
|
3547
|
+
checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1"
|
|
2988
3548
|
dependencies = [
|
|
2989
3549
|
"proc-macro2",
|
|
2990
3550
|
"quote",
|
|
@@ -3014,15 +3574,15 @@ dependencies = [
|
|
|
3014
3574
|
|
|
3015
3575
|
[[package]]
|
|
3016
3576
|
name = "zeroize"
|
|
3017
|
-
version = "1.8.
|
|
3577
|
+
version = "1.8.2"
|
|
3018
3578
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3019
|
-
checksum = "
|
|
3579
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
3020
3580
|
|
|
3021
3581
|
[[package]]
|
|
3022
3582
|
name = "zerotrie"
|
|
3023
|
-
version = "0.2.
|
|
3583
|
+
version = "0.2.3"
|
|
3024
3584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3025
|
-
checksum = "
|
|
3585
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
3026
3586
|
dependencies = [
|
|
3027
3587
|
"displaydoc",
|
|
3028
3588
|
"yoke",
|
|
@@ -3031,9 +3591,9 @@ dependencies = [
|
|
|
3031
3591
|
|
|
3032
3592
|
[[package]]
|
|
3033
3593
|
name = "zerovec"
|
|
3034
|
-
version = "0.11.
|
|
3594
|
+
version = "0.11.5"
|
|
3035
3595
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3036
|
-
checksum = "
|
|
3596
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
3037
3597
|
dependencies = [
|
|
3038
3598
|
"yoke",
|
|
3039
3599
|
"zerofrom",
|
|
@@ -3042,11 +3602,17 @@ dependencies = [
|
|
|
3042
3602
|
|
|
3043
3603
|
[[package]]
|
|
3044
3604
|
name = "zerovec-derive"
|
|
3045
|
-
version = "0.11.
|
|
3605
|
+
version = "0.11.2"
|
|
3046
3606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3047
|
-
checksum = "
|
|
3607
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
3048
3608
|
dependencies = [
|
|
3049
3609
|
"proc-macro2",
|
|
3050
3610
|
"quote",
|
|
3051
3611
|
"syn",
|
|
3052
3612
|
]
|
|
3613
|
+
|
|
3614
|
+
[[package]]
|
|
3615
|
+
name = "zmij"
|
|
3616
|
+
version = "1.0.12"
|
|
3617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3618
|
+
checksum = "2fc5a66a20078bf1251bde995aa2fdcc4b800c70b5d92dd2c62abc5c60f679f8"
|