qcs-sdk-python 0.26.2rc1__tar.gz → 0.26.3rc0__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.
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/Cargo.lock +582 -587
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/Cargo.toml +42 -9
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/PKG-INFO +1 -1
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/CHANGELOG.md +16 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/Cargo.toml +48 -62
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/Makefile.toml +4 -3
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/README.md +8 -9
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/scripts/check-py-api.sh +20 -16
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/bin/stub_gen.rs +2 -2
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/client.rs +1 -24
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/compiler/isa/qubit.rs +0 -3
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/compiler/rpcq.rs +1 -5
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/diagnostics/mod.rs +4 -2
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/executable.rs +0 -5
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/execution_data.rs +0 -2
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/python/executable.rs +1 -1
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/api/mod.rs +9 -17
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/api/python.rs +1 -1
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/execution.rs +0 -6
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/experimental/random.rs +6 -5
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/mod.rs +0 -3
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/translation/mod.rs +1 -7
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/translation/python.rs +2 -2
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qvm/http.rs +3 -5
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qvm/mod.rs +2 -4
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests/mocked_qpu.rs +17 -14
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/pyproject.toml +1 -1
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/_tracing_subscriber/__init__.py +1 -1
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/_tracing_subscriber/__init__.pyi +1 -1
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/_tracing_subscriber/common/__init__.py +1 -1
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/_tracing_subscriber/common/__init__.pyi +1 -1
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/_tracing_subscriber/layers/__init__.py +1 -1
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/_tracing_subscriber/layers/__init__.pyi +1 -1
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/_tracing_subscriber/layers/file/__init__.py +1 -1
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/_tracing_subscriber/layers/file/__init__.pyi +1 -1
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/_tracing_subscriber/layers/otel_otlp/__init__.py +1 -1
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/_tracing_subscriber/layers/otel_otlp/__init__.pyi +1 -1
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/_tracing_subscriber/layers/otel_otlp_file/__init__.py +1 -1
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/_tracing_subscriber/layers/otel_otlp_file/__init__.pyi +1 -1
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/_tracing_subscriber/subscriber/__init__.py +1 -1
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/_tracing_subscriber/subscriber/__init__.pyi +1 -1
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/README-py.md +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/THIRDPARTY.yaml +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/.flake8 +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/README-py.md +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/THIRDPARTY.yaml +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/build.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/examples/delayed_job_retrieval.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/examples/execute.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/examples/libquil.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/examples/local.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/examples/parametric_compilation.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/examples/quil_t.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/poetry.lock +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/poetry.toml +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/python/stubtest-allowlist +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/scripts/lint-bindings.py +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/scripts/patch_grpc_web.py +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/bin/diagnostics.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/compiler/isa/edge.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/compiler/isa/mod.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/compiler/isa/operator.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/compiler/libquil.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/compiler/mod.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/compiler/python.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/compiler/quilc.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/diagnostics/python.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/lib.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/python/client.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/python/errors.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/python/execution_data.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/python/mod.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/python/nonzero.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/python/register_data.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/experimental/mod.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/experimental/python.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/isa/mod.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/isa/python.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/python.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/result_data.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_allocates_for_multiple_expressions-2.snap +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_allocates_for_multiple_expressions.snap +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_converts_frequency_expressions-2.snap +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_converts_frequency_expressions.snap +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_converts_phases.snap +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_converts_set_scale_units.snap +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_substitutes_and_reuses_gate_expressions.snap +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_substitutes_gate_parameters.snap +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qvm/execution.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qvm/libquil.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qvm/python.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/qvm/snapshots/qcs__qvm__test__apply_valid_parameters_to_program.snap +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/src/register_data.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests/aspen_9_isa.json +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests/basic_qvm.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests/bell_state_response_data.hex +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests/compiler-isa-Aspen-8.json +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests/parametric_compilation.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests/prng_test_cases.json +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests/qcs-isa-Aspen-8.json +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests/qvm_api.rs +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests/qvm_isa.json +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests/settings.toml +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests_py/_fixtures/aspen-m-3.json +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests_py/_fixtures/device-2q.json +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests_py/_qcs_config/secrets.toml +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests_py/_qcs_config/settings.toml +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests_py/compiler/__snapshots__/test_quilc.ambr +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests_py/compiler/test_quilc.py +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests_py/conftest.py +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests_py/execution_data/test_execution_data.py +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests_py/qpu/experimental/test_random.py +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests_py/qpu/test_api.py +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests_py/qpu/test_isa.py +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests_py/qpu/test_qpu.py +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests_py/qpu/test_translation.py +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests_py/qvm/test_qvm.py +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests_py/test_client.py +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests_py/test_diagnostics.py +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests_py/test_executable.py +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests_py/test_logging.py +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/crates/lib/tests_py/test_tracing_subscriber.py +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/__init__.py +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/__init__.pyi +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/client.pyi +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/compiler/__init__.pyi +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/compiler/quilc.pyi +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/diagnostics.pyi +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/qpu/__init__.pyi +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/qpu/api.pyi +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/qpu/experimental/__init__.pyi +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/qpu/experimental/random.pyi +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/qpu/isa.pyi +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/qpu/translation.pyi +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/qvm/__init__.pyi +0 -0
- {qcs_sdk_python-0.26.2rc1 → qcs_sdk_python-0.26.3rc0}/python/qcs_sdk/qvm/api.pyi +0 -0
|
@@ -90,7 +90,7 @@ dependencies = [
|
|
|
90
90
|
"proc-macro2",
|
|
91
91
|
"quote",
|
|
92
92
|
"rustc_version",
|
|
93
|
-
"syn 2.0.
|
|
93
|
+
"syn 2.0.117",
|
|
94
94
|
]
|
|
95
95
|
|
|
96
96
|
[[package]]
|
|
@@ -121,7 +121,7 @@ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
|
121
121
|
dependencies = [
|
|
122
122
|
"proc-macro2",
|
|
123
123
|
"quote",
|
|
124
|
-
"syn 2.0.
|
|
124
|
+
"syn 2.0.117",
|
|
125
125
|
]
|
|
126
126
|
|
|
127
127
|
[[package]]
|
|
@@ -147,9 +147,9 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
|
147
147
|
|
|
148
148
|
[[package]]
|
|
149
149
|
name = "aws-lc-rs"
|
|
150
|
-
version = "1.
|
|
150
|
+
version = "1.17.0"
|
|
151
151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
-
checksum = "
|
|
152
|
+
checksum = "5ec2f1fc3ec205783a5da9a7e6c1509cc69dedf09a1949e412c1e18469326d00"
|
|
153
153
|
dependencies = [
|
|
154
154
|
"aws-lc-sys",
|
|
155
155
|
"untrusted 0.7.1",
|
|
@@ -158,9 +158,9 @@ dependencies = [
|
|
|
158
158
|
|
|
159
159
|
[[package]]
|
|
160
160
|
name = "aws-lc-sys"
|
|
161
|
-
version = "0.
|
|
161
|
+
version = "0.41.0"
|
|
162
162
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
|
-
checksum = "
|
|
163
|
+
checksum = "1a2f9779ce85b93ab6170dd940ad0169b5766ff848247aff13bb788b832fe3f4"
|
|
164
164
|
dependencies = [
|
|
165
165
|
"cc",
|
|
166
166
|
"cmake",
|
|
@@ -178,10 +178,10 @@ dependencies = [
|
|
|
178
178
|
"bytes",
|
|
179
179
|
"form_urlencoded",
|
|
180
180
|
"futures-util",
|
|
181
|
-
"http
|
|
182
|
-
"http-body
|
|
181
|
+
"http",
|
|
182
|
+
"http-body",
|
|
183
183
|
"http-body-util",
|
|
184
|
-
"hyper
|
|
184
|
+
"hyper",
|
|
185
185
|
"hyper-util",
|
|
186
186
|
"itoa",
|
|
187
187
|
"matchit",
|
|
@@ -209,8 +209,8 @@ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
|
|
|
209
209
|
dependencies = [
|
|
210
210
|
"bytes",
|
|
211
211
|
"futures-core",
|
|
212
|
-
"http
|
|
213
|
-
"http-body
|
|
212
|
+
"http",
|
|
213
|
+
"http-body",
|
|
214
214
|
"http-body-util",
|
|
215
215
|
"mime",
|
|
216
216
|
"pin-project-lite",
|
|
@@ -258,7 +258,7 @@ version = "0.72.1"
|
|
|
258
258
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
259
|
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
260
260
|
dependencies = [
|
|
261
|
-
"bitflags 2.
|
|
261
|
+
"bitflags 2.11.1",
|
|
262
262
|
"cexpr",
|
|
263
263
|
"clang-sys",
|
|
264
264
|
"itertools 0.13.0",
|
|
@@ -269,7 +269,7 @@ dependencies = [
|
|
|
269
269
|
"regex",
|
|
270
270
|
"rustc-hash 2.1.1",
|
|
271
271
|
"shlex",
|
|
272
|
-
"syn 2.0.
|
|
272
|
+
"syn 2.0.117",
|
|
273
273
|
]
|
|
274
274
|
|
|
275
275
|
[[package]]
|
|
@@ -280,9 +280,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
280
280
|
|
|
281
281
|
[[package]]
|
|
282
282
|
name = "bitflags"
|
|
283
|
-
version = "2.
|
|
283
|
+
version = "2.11.1"
|
|
284
284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
-
checksum = "
|
|
285
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
286
286
|
|
|
287
287
|
[[package]]
|
|
288
288
|
name = "block-buffer"
|
|
@@ -488,6 +488,18 @@ dependencies = [
|
|
|
488
488
|
"windows-sys 0.59.0",
|
|
489
489
|
]
|
|
490
490
|
|
|
491
|
+
[[package]]
|
|
492
|
+
name = "const-hex"
|
|
493
|
+
version = "1.19.0"
|
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
+
checksum = "20d9a563d167a9cce0f94153382b33cb6eded6dfabff03c69ad65a28ea1514e0"
|
|
496
|
+
dependencies = [
|
|
497
|
+
"cfg-if",
|
|
498
|
+
"cpufeatures",
|
|
499
|
+
"proptest",
|
|
500
|
+
"serde_core",
|
|
501
|
+
]
|
|
502
|
+
|
|
491
503
|
[[package]]
|
|
492
504
|
name = "const-oid"
|
|
493
505
|
version = "0.9.6"
|
|
@@ -694,7 +706,7 @@ dependencies = [
|
|
|
694
706
|
"proc-macro2",
|
|
695
707
|
"quote",
|
|
696
708
|
"strsim 0.11.1",
|
|
697
|
-
"syn 2.0.
|
|
709
|
+
"syn 2.0.117",
|
|
698
710
|
]
|
|
699
711
|
|
|
700
712
|
[[package]]
|
|
@@ -707,7 +719,7 @@ dependencies = [
|
|
|
707
719
|
"proc-macro2",
|
|
708
720
|
"quote",
|
|
709
721
|
"strsim 0.11.1",
|
|
710
|
-
"syn 2.0.
|
|
722
|
+
"syn 2.0.117",
|
|
711
723
|
]
|
|
712
724
|
|
|
713
725
|
[[package]]
|
|
@@ -729,7 +741,7 @@ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
|
729
741
|
dependencies = [
|
|
730
742
|
"darling_core 0.20.11",
|
|
731
743
|
"quote",
|
|
732
|
-
"syn 2.0.
|
|
744
|
+
"syn 2.0.117",
|
|
733
745
|
]
|
|
734
746
|
|
|
735
747
|
[[package]]
|
|
@@ -740,7 +752,7 @@ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
|
|
|
740
752
|
dependencies = [
|
|
741
753
|
"darling_core 0.23.0",
|
|
742
754
|
"quote",
|
|
743
|
-
"syn 2.0.
|
|
755
|
+
"syn 2.0.117",
|
|
744
756
|
]
|
|
745
757
|
|
|
746
758
|
[[package]]
|
|
@@ -795,7 +807,7 @@ dependencies = [
|
|
|
795
807
|
"darling 0.20.11",
|
|
796
808
|
"proc-macro2",
|
|
797
809
|
"quote",
|
|
798
|
-
"syn 2.0.
|
|
810
|
+
"syn 2.0.117",
|
|
799
811
|
]
|
|
800
812
|
|
|
801
813
|
[[package]]
|
|
@@ -805,7 +817,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
805
817
|
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
806
818
|
dependencies = [
|
|
807
819
|
"derive_builder_core",
|
|
808
|
-
"syn 2.0.
|
|
820
|
+
"syn 2.0.117",
|
|
809
821
|
]
|
|
810
822
|
|
|
811
823
|
[[package]]
|
|
@@ -844,7 +856,7 @@ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
|
844
856
|
dependencies = [
|
|
845
857
|
"proc-macro2",
|
|
846
858
|
"quote",
|
|
847
|
-
"syn 2.0.
|
|
859
|
+
"syn 2.0.117",
|
|
848
860
|
]
|
|
849
861
|
|
|
850
862
|
[[package]]
|
|
@@ -958,6 +970,12 @@ version = "0.4.2"
|
|
|
958
970
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
971
|
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
960
972
|
|
|
973
|
+
[[package]]
|
|
974
|
+
name = "fixedbitset"
|
|
975
|
+
version = "0.5.7"
|
|
976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
978
|
+
|
|
961
979
|
[[package]]
|
|
962
980
|
name = "flate2"
|
|
963
981
|
version = "1.1.9"
|
|
@@ -1036,9 +1054,9 @@ dependencies = [
|
|
|
1036
1054
|
|
|
1037
1055
|
[[package]]
|
|
1038
1056
|
name = "futures-channel"
|
|
1039
|
-
version = "0.3.
|
|
1057
|
+
version = "0.3.32"
|
|
1040
1058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1041
|
-
checksum = "
|
|
1059
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
1042
1060
|
dependencies = [
|
|
1043
1061
|
"futures-core",
|
|
1044
1062
|
"futures-sink",
|
|
@@ -1046,9 +1064,9 @@ dependencies = [
|
|
|
1046
1064
|
|
|
1047
1065
|
[[package]]
|
|
1048
1066
|
name = "futures-core"
|
|
1049
|
-
version = "0.3.
|
|
1067
|
+
version = "0.3.32"
|
|
1050
1068
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
-
checksum = "
|
|
1069
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
1052
1070
|
|
|
1053
1071
|
[[package]]
|
|
1054
1072
|
name = "futures-executor"
|
|
@@ -1063,32 +1081,32 @@ dependencies = [
|
|
|
1063
1081
|
|
|
1064
1082
|
[[package]]
|
|
1065
1083
|
name = "futures-io"
|
|
1066
|
-
version = "0.3.
|
|
1084
|
+
version = "0.3.32"
|
|
1067
1085
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
-
checksum = "
|
|
1086
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
1069
1087
|
|
|
1070
1088
|
[[package]]
|
|
1071
1089
|
name = "futures-macro"
|
|
1072
|
-
version = "0.3.
|
|
1090
|
+
version = "0.3.32"
|
|
1073
1091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
-
checksum = "
|
|
1092
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
1075
1093
|
dependencies = [
|
|
1076
1094
|
"proc-macro2",
|
|
1077
1095
|
"quote",
|
|
1078
|
-
"syn 2.0.
|
|
1096
|
+
"syn 2.0.117",
|
|
1079
1097
|
]
|
|
1080
1098
|
|
|
1081
1099
|
[[package]]
|
|
1082
1100
|
name = "futures-sink"
|
|
1083
|
-
version = "0.3.
|
|
1101
|
+
version = "0.3.32"
|
|
1084
1102
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
-
checksum = "
|
|
1103
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
1086
1104
|
|
|
1087
1105
|
[[package]]
|
|
1088
1106
|
name = "futures-task"
|
|
1089
|
-
version = "0.3.
|
|
1107
|
+
version = "0.3.32"
|
|
1090
1108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
-
checksum = "
|
|
1109
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
1092
1110
|
|
|
1093
1111
|
[[package]]
|
|
1094
1112
|
name = "futures-timer"
|
|
@@ -1098,9 +1116,9 @@ checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
|
|
|
1098
1116
|
|
|
1099
1117
|
[[package]]
|
|
1100
1118
|
name = "futures-util"
|
|
1101
|
-
version = "0.3.
|
|
1119
|
+
version = "0.3.32"
|
|
1102
1120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1103
|
-
checksum = "
|
|
1121
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
1104
1122
|
dependencies = [
|
|
1105
1123
|
"futures-channel",
|
|
1106
1124
|
"futures-core",
|
|
@@ -1110,7 +1128,6 @@ dependencies = [
|
|
|
1110
1128
|
"futures-task",
|
|
1111
1129
|
"memchr",
|
|
1112
1130
|
"pin-project-lite",
|
|
1113
|
-
"pin-utils",
|
|
1114
1131
|
"slab",
|
|
1115
1132
|
]
|
|
1116
1133
|
|
|
@@ -1166,25 +1183,6 @@ version = "0.3.3"
|
|
|
1166
1183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
1184
|
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
1168
1185
|
|
|
1169
|
-
[[package]]
|
|
1170
|
-
name = "h2"
|
|
1171
|
-
version = "0.3.27"
|
|
1172
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
-
checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
|
|
1174
|
-
dependencies = [
|
|
1175
|
-
"bytes",
|
|
1176
|
-
"fnv",
|
|
1177
|
-
"futures-core",
|
|
1178
|
-
"futures-sink",
|
|
1179
|
-
"futures-util",
|
|
1180
|
-
"http 0.2.12",
|
|
1181
|
-
"indexmap 2.13.0",
|
|
1182
|
-
"slab",
|
|
1183
|
-
"tokio",
|
|
1184
|
-
"tokio-util",
|
|
1185
|
-
"tracing",
|
|
1186
|
-
]
|
|
1187
|
-
|
|
1188
1186
|
[[package]]
|
|
1189
1187
|
name = "h2"
|
|
1190
1188
|
version = "0.4.13"
|
|
@@ -1196,7 +1194,7 @@ dependencies = [
|
|
|
1196
1194
|
"fnv",
|
|
1197
1195
|
"futures-core",
|
|
1198
1196
|
"futures-sink",
|
|
1199
|
-
"http
|
|
1197
|
+
"http",
|
|
1200
1198
|
"indexmap 2.13.0",
|
|
1201
1199
|
"slab",
|
|
1202
1200
|
"tokio",
|
|
@@ -1255,21 +1253,6 @@ version = "0.16.1"
|
|
|
1255
1253
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1256
1254
|
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1257
1255
|
|
|
1258
|
-
[[package]]
|
|
1259
|
-
name = "headers"
|
|
1260
|
-
version = "0.3.9"
|
|
1261
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1262
|
-
checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270"
|
|
1263
|
-
dependencies = [
|
|
1264
|
-
"base64 0.21.7",
|
|
1265
|
-
"bytes",
|
|
1266
|
-
"headers-core 0.2.0",
|
|
1267
|
-
"http 0.2.12",
|
|
1268
|
-
"httpdate",
|
|
1269
|
-
"mime",
|
|
1270
|
-
"sha1",
|
|
1271
|
-
]
|
|
1272
|
-
|
|
1273
1256
|
[[package]]
|
|
1274
1257
|
name = "headers"
|
|
1275
1258
|
version = "0.4.1"
|
|
@@ -1278,29 +1261,20 @@ checksum = "b3314d5adb5d94bcdf56771f2e50dbbc80bb4bdf88967526706205ac9eff24eb"
|
|
|
1278
1261
|
dependencies = [
|
|
1279
1262
|
"base64 0.22.1",
|
|
1280
1263
|
"bytes",
|
|
1281
|
-
"headers-core
|
|
1282
|
-
"http
|
|
1264
|
+
"headers-core",
|
|
1265
|
+
"http",
|
|
1283
1266
|
"httpdate",
|
|
1284
1267
|
"mime",
|
|
1285
1268
|
"sha1",
|
|
1286
1269
|
]
|
|
1287
1270
|
|
|
1288
|
-
[[package]]
|
|
1289
|
-
name = "headers-core"
|
|
1290
|
-
version = "0.2.0"
|
|
1291
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1292
|
-
checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429"
|
|
1293
|
-
dependencies = [
|
|
1294
|
-
"http 0.2.12",
|
|
1295
|
-
]
|
|
1296
|
-
|
|
1297
1271
|
[[package]]
|
|
1298
1272
|
name = "headers-core"
|
|
1299
1273
|
version = "0.3.0"
|
|
1300
1274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
1275
|
checksum = "54b4a22553d4242c49fddb9ba998a99962b5cc6f22cb5a3482bec22522403ce4"
|
|
1302
1276
|
dependencies = [
|
|
1303
|
-
"http
|
|
1277
|
+
"http",
|
|
1304
1278
|
]
|
|
1305
1279
|
|
|
1306
1280
|
[[package]]
|
|
@@ -1330,17 +1304,6 @@ dependencies = [
|
|
|
1330
1304
|
"windows-sys 0.61.2",
|
|
1331
1305
|
]
|
|
1332
1306
|
|
|
1333
|
-
[[package]]
|
|
1334
|
-
name = "http"
|
|
1335
|
-
version = "0.2.12"
|
|
1336
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1337
|
-
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
1338
|
-
dependencies = [
|
|
1339
|
-
"bytes",
|
|
1340
|
-
"fnv",
|
|
1341
|
-
"itoa",
|
|
1342
|
-
]
|
|
1343
|
-
|
|
1344
1307
|
[[package]]
|
|
1345
1308
|
name = "http"
|
|
1346
1309
|
version = "1.4.0"
|
|
@@ -1351,17 +1314,6 @@ dependencies = [
|
|
|
1351
1314
|
"itoa",
|
|
1352
1315
|
]
|
|
1353
1316
|
|
|
1354
|
-
[[package]]
|
|
1355
|
-
name = "http-body"
|
|
1356
|
-
version = "0.4.6"
|
|
1357
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
-
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
1359
|
-
dependencies = [
|
|
1360
|
-
"bytes",
|
|
1361
|
-
"http 0.2.12",
|
|
1362
|
-
"pin-project-lite",
|
|
1363
|
-
]
|
|
1364
|
-
|
|
1365
1317
|
[[package]]
|
|
1366
1318
|
name = "http-body"
|
|
1367
1319
|
version = "1.0.1"
|
|
@@ -1369,7 +1321,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1369
1321
|
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1370
1322
|
dependencies = [
|
|
1371
1323
|
"bytes",
|
|
1372
|
-
"http
|
|
1324
|
+
"http",
|
|
1373
1325
|
]
|
|
1374
1326
|
|
|
1375
1327
|
[[package]]
|
|
@@ -1380,8 +1332,8 @@ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
|
1380
1332
|
dependencies = [
|
|
1381
1333
|
"bytes",
|
|
1382
1334
|
"futures-core",
|
|
1383
|
-
"http
|
|
1384
|
-
"http-body
|
|
1335
|
+
"http",
|
|
1336
|
+
"http-body",
|
|
1385
1337
|
"pin-project-lite",
|
|
1386
1338
|
]
|
|
1387
1339
|
|
|
@@ -1397,30 +1349,6 @@ version = "1.0.3"
|
|
|
1397
1349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1398
1350
|
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
1399
1351
|
|
|
1400
|
-
[[package]]
|
|
1401
|
-
name = "hyper"
|
|
1402
|
-
version = "0.14.32"
|
|
1403
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1404
|
-
checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
|
|
1405
|
-
dependencies = [
|
|
1406
|
-
"bytes",
|
|
1407
|
-
"futures-channel",
|
|
1408
|
-
"futures-core",
|
|
1409
|
-
"futures-util",
|
|
1410
|
-
"h2 0.3.27",
|
|
1411
|
-
"http 0.2.12",
|
|
1412
|
-
"http-body 0.4.6",
|
|
1413
|
-
"httparse",
|
|
1414
|
-
"httpdate",
|
|
1415
|
-
"itoa",
|
|
1416
|
-
"pin-project-lite",
|
|
1417
|
-
"socket2 0.5.10",
|
|
1418
|
-
"tokio",
|
|
1419
|
-
"tower-service",
|
|
1420
|
-
"tracing",
|
|
1421
|
-
"want",
|
|
1422
|
-
]
|
|
1423
|
-
|
|
1424
1352
|
[[package]]
|
|
1425
1353
|
name = "hyper"
|
|
1426
1354
|
version = "1.8.1"
|
|
@@ -1431,9 +1359,9 @@ dependencies = [
|
|
|
1431
1359
|
"bytes",
|
|
1432
1360
|
"futures-channel",
|
|
1433
1361
|
"futures-core",
|
|
1434
|
-
"h2
|
|
1435
|
-
"http
|
|
1436
|
-
"http-body
|
|
1362
|
+
"h2",
|
|
1363
|
+
"http",
|
|
1364
|
+
"http-body",
|
|
1437
1365
|
"httparse",
|
|
1438
1366
|
"httpdate",
|
|
1439
1367
|
"itoa",
|
|
@@ -1444,60 +1372,20 @@ dependencies = [
|
|
|
1444
1372
|
"want",
|
|
1445
1373
|
]
|
|
1446
1374
|
|
|
1447
|
-
[[package]]
|
|
1448
|
-
name = "hyper-proxy2"
|
|
1449
|
-
version = "0.1.0"
|
|
1450
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
|
-
checksum = "9043b7b23fb0bc4a1c7014c27b50a4fc42cc76206f71d34fc0dfe5b28ddc3faf"
|
|
1452
|
-
dependencies = [
|
|
1453
|
-
"bytes",
|
|
1454
|
-
"futures-util",
|
|
1455
|
-
"headers 0.4.1",
|
|
1456
|
-
"http 1.4.0",
|
|
1457
|
-
"hyper 1.8.1",
|
|
1458
|
-
"hyper-rustls 0.26.0",
|
|
1459
|
-
"hyper-util",
|
|
1460
|
-
"pin-project-lite",
|
|
1461
|
-
"rustls-native-certs 0.7.3",
|
|
1462
|
-
"tokio",
|
|
1463
|
-
"tokio-rustls 0.25.0",
|
|
1464
|
-
"tower-service",
|
|
1465
|
-
"webpki",
|
|
1466
|
-
]
|
|
1467
|
-
|
|
1468
|
-
[[package]]
|
|
1469
|
-
name = "hyper-rustls"
|
|
1470
|
-
version = "0.26.0"
|
|
1471
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1472
|
-
checksum = "a0bea761b46ae2b24eb4aef630d8d1c398157b6fc29e6350ecf090a0b70c952c"
|
|
1473
|
-
dependencies = [
|
|
1474
|
-
"futures-util",
|
|
1475
|
-
"http 1.4.0",
|
|
1476
|
-
"hyper 1.8.1",
|
|
1477
|
-
"hyper-util",
|
|
1478
|
-
"log",
|
|
1479
|
-
"rustls 0.22.4",
|
|
1480
|
-
"rustls-native-certs 0.7.3",
|
|
1481
|
-
"rustls-pki-types",
|
|
1482
|
-
"tokio",
|
|
1483
|
-
"tokio-rustls 0.25.0",
|
|
1484
|
-
"tower-service",
|
|
1485
|
-
]
|
|
1486
|
-
|
|
1487
1375
|
[[package]]
|
|
1488
1376
|
name = "hyper-rustls"
|
|
1489
1377
|
version = "0.27.7"
|
|
1490
1378
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
1379
|
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
1492
1380
|
dependencies = [
|
|
1493
|
-
"http
|
|
1494
|
-
"hyper
|
|
1381
|
+
"http",
|
|
1382
|
+
"hyper",
|
|
1495
1383
|
"hyper-util",
|
|
1496
|
-
"rustls
|
|
1497
|
-
"rustls-native-certs
|
|
1384
|
+
"rustls",
|
|
1385
|
+
"rustls-native-certs",
|
|
1498
1386
|
"rustls-pki-types",
|
|
1499
1387
|
"tokio",
|
|
1500
|
-
"tokio-rustls
|
|
1388
|
+
"tokio-rustls",
|
|
1501
1389
|
"tower-service",
|
|
1502
1390
|
"webpki-roots",
|
|
1503
1391
|
]
|
|
@@ -1509,8 +1397,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1509
1397
|
checksum = "51c227614c208f7e7c2e040526912604a1a957fe467c9c2f5b06c5d032337dab"
|
|
1510
1398
|
dependencies = [
|
|
1511
1399
|
"async-socks5",
|
|
1512
|
-
"http
|
|
1513
|
-
"hyper
|
|
1400
|
+
"http",
|
|
1401
|
+
"hyper",
|
|
1514
1402
|
"hyper-util",
|
|
1515
1403
|
"thiserror 1.0.69",
|
|
1516
1404
|
"tokio",
|
|
@@ -1523,7 +1411,7 @@ version = "0.5.2"
|
|
|
1523
1411
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1524
1412
|
checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
|
|
1525
1413
|
dependencies = [
|
|
1526
|
-
"hyper
|
|
1414
|
+
"hyper",
|
|
1527
1415
|
"hyper-util",
|
|
1528
1416
|
"pin-project-lite",
|
|
1529
1417
|
"tokio",
|
|
@@ -1538,7 +1426,7 @@ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
|
|
|
1538
1426
|
dependencies = [
|
|
1539
1427
|
"bytes",
|
|
1540
1428
|
"http-body-util",
|
|
1541
|
-
"hyper
|
|
1429
|
+
"hyper",
|
|
1542
1430
|
"hyper-util",
|
|
1543
1431
|
"native-tls",
|
|
1544
1432
|
"tokio",
|
|
@@ -1556,14 +1444,14 @@ dependencies = [
|
|
|
1556
1444
|
"bytes",
|
|
1557
1445
|
"futures-channel",
|
|
1558
1446
|
"futures-util",
|
|
1559
|
-
"http
|
|
1560
|
-
"http-body
|
|
1561
|
-
"hyper
|
|
1447
|
+
"http",
|
|
1448
|
+
"http-body",
|
|
1449
|
+
"hyper",
|
|
1562
1450
|
"ipnet",
|
|
1563
1451
|
"libc",
|
|
1564
1452
|
"percent-encoding",
|
|
1565
1453
|
"pin-project-lite",
|
|
1566
|
-
"socket2
|
|
1454
|
+
"socket2",
|
|
1567
1455
|
"system-configuration",
|
|
1568
1456
|
"tokio",
|
|
1569
1457
|
"tower-service",
|
|
@@ -1808,7 +1696,7 @@ dependencies = [
|
|
|
1808
1696
|
"heck 0.5.0",
|
|
1809
1697
|
"proc-macro2",
|
|
1810
1698
|
"quote",
|
|
1811
|
-
"syn 2.0.
|
|
1699
|
+
"syn 2.0.117",
|
|
1812
1700
|
]
|
|
1813
1701
|
|
|
1814
1702
|
[[package]]
|
|
@@ -1849,9 +1737,9 @@ dependencies = [
|
|
|
1849
1737
|
|
|
1850
1738
|
[[package]]
|
|
1851
1739
|
name = "itoa"
|
|
1852
|
-
version = "1.0.
|
|
1740
|
+
version = "1.0.18"
|
|
1853
1741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1854
|
-
checksum = "
|
|
1742
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1855
1743
|
|
|
1856
1744
|
[[package]]
|
|
1857
1745
|
name = "jni"
|
|
@@ -1862,19 +1750,68 @@ dependencies = [
|
|
|
1862
1750
|
"cesu8",
|
|
1863
1751
|
"cfg-if",
|
|
1864
1752
|
"combine",
|
|
1865
|
-
"jni-sys",
|
|
1753
|
+
"jni-sys 0.3.0",
|
|
1866
1754
|
"log",
|
|
1867
1755
|
"thiserror 1.0.69",
|
|
1868
1756
|
"walkdir",
|
|
1869
1757
|
"windows-sys 0.45.0",
|
|
1870
1758
|
]
|
|
1871
1759
|
|
|
1760
|
+
[[package]]
|
|
1761
|
+
name = "jni"
|
|
1762
|
+
version = "0.22.4"
|
|
1763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1764
|
+
checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
|
|
1765
|
+
dependencies = [
|
|
1766
|
+
"cfg-if",
|
|
1767
|
+
"combine",
|
|
1768
|
+
"jni-macros",
|
|
1769
|
+
"jni-sys 0.4.1",
|
|
1770
|
+
"log",
|
|
1771
|
+
"simd_cesu8",
|
|
1772
|
+
"thiserror 2.0.18",
|
|
1773
|
+
"walkdir",
|
|
1774
|
+
"windows-link",
|
|
1775
|
+
]
|
|
1776
|
+
|
|
1777
|
+
[[package]]
|
|
1778
|
+
name = "jni-macros"
|
|
1779
|
+
version = "0.22.4"
|
|
1780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1781
|
+
checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
|
|
1782
|
+
dependencies = [
|
|
1783
|
+
"proc-macro2",
|
|
1784
|
+
"quote",
|
|
1785
|
+
"rustc_version",
|
|
1786
|
+
"simd_cesu8",
|
|
1787
|
+
"syn 2.0.117",
|
|
1788
|
+
]
|
|
1789
|
+
|
|
1872
1790
|
[[package]]
|
|
1873
1791
|
name = "jni-sys"
|
|
1874
1792
|
version = "0.3.0"
|
|
1875
1793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1876
1794
|
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
|
|
1877
1795
|
|
|
1796
|
+
[[package]]
|
|
1797
|
+
name = "jni-sys"
|
|
1798
|
+
version = "0.4.1"
|
|
1799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1800
|
+
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
1801
|
+
dependencies = [
|
|
1802
|
+
"jni-sys-macros",
|
|
1803
|
+
]
|
|
1804
|
+
|
|
1805
|
+
[[package]]
|
|
1806
|
+
name = "jni-sys-macros"
|
|
1807
|
+
version = "0.4.1"
|
|
1808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1809
|
+
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
1810
|
+
dependencies = [
|
|
1811
|
+
"quote",
|
|
1812
|
+
"syn 2.0.117",
|
|
1813
|
+
]
|
|
1814
|
+
|
|
1878
1815
|
[[package]]
|
|
1879
1816
|
name = "jobserver"
|
|
1880
1817
|
version = "0.1.34"
|
|
@@ -2020,9 +1957,9 @@ dependencies = [
|
|
|
2020
1957
|
|
|
2021
1958
|
[[package]]
|
|
2022
1959
|
name = "libc"
|
|
2023
|
-
version = "0.2.
|
|
1960
|
+
version = "0.2.186"
|
|
2024
1961
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2025
|
-
checksum = "
|
|
1962
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
2026
1963
|
|
|
2027
1964
|
[[package]]
|
|
2028
1965
|
name = "libloading"
|
|
@@ -2042,9 +1979,9 @@ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
|
2042
1979
|
|
|
2043
1980
|
[[package]]
|
|
2044
1981
|
name = "libquil-sys"
|
|
2045
|
-
version = "0.4.
|
|
1982
|
+
version = "0.4.2"
|
|
2046
1983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2047
|
-
checksum = "
|
|
1984
|
+
checksum = "e68ddbf7529ee219c8a1d83fc28b9048a888d3174960a05721805137904363ee"
|
|
2048
1985
|
dependencies = [
|
|
2049
1986
|
"bindgen",
|
|
2050
1987
|
"cc",
|
|
@@ -2129,9 +2066,9 @@ dependencies = [
|
|
|
2129
2066
|
|
|
2130
2067
|
[[package]]
|
|
2131
2068
|
name = "memchr"
|
|
2132
|
-
version = "2.
|
|
2069
|
+
version = "2.8.0"
|
|
2133
2070
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2134
|
-
checksum = "
|
|
2071
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
2135
2072
|
|
|
2136
2073
|
[[package]]
|
|
2137
2074
|
name = "memoffset"
|
|
@@ -2176,9 +2113,9 @@ dependencies = [
|
|
|
2176
2113
|
|
|
2177
2114
|
[[package]]
|
|
2178
2115
|
name = "mio"
|
|
2179
|
-
version = "1.
|
|
2116
|
+
version = "1.2.0"
|
|
2180
2117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2181
|
-
checksum = "
|
|
2118
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
2182
2119
|
dependencies = [
|
|
2183
2120
|
"libc",
|
|
2184
2121
|
"wasi",
|
|
@@ -2429,9 +2366,9 @@ dependencies = [
|
|
|
2429
2366
|
"base64 0.22.1",
|
|
2430
2367
|
"chrono",
|
|
2431
2368
|
"getrandom 0.2.17",
|
|
2432
|
-
"http
|
|
2369
|
+
"http",
|
|
2433
2370
|
"rand 0.8.5",
|
|
2434
|
-
"reqwest",
|
|
2371
|
+
"reqwest 0.12.28",
|
|
2435
2372
|
"serde",
|
|
2436
2373
|
"serde_json",
|
|
2437
2374
|
"serde_path_to_error",
|
|
@@ -2451,11 +2388,11 @@ dependencies = [
|
|
|
2451
2388
|
"chrono",
|
|
2452
2389
|
"colored",
|
|
2453
2390
|
"futures",
|
|
2454
|
-
"http
|
|
2391
|
+
"http",
|
|
2455
2392
|
"jsonwebtoken 10.3.0",
|
|
2456
2393
|
"once_cell",
|
|
2457
2394
|
"rand 0.8.5",
|
|
2458
|
-
"reqwest",
|
|
2395
|
+
"reqwest 0.12.28",
|
|
2459
2396
|
"rsa",
|
|
2460
2397
|
"serde",
|
|
2461
2398
|
"serde_json",
|
|
@@ -2489,15 +2426,15 @@ version = "0.3.2"
|
|
|
2489
2426
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2490
2427
|
checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
|
|
2491
2428
|
dependencies = [
|
|
2492
|
-
"bitflags 2.
|
|
2429
|
+
"bitflags 2.11.1",
|
|
2493
2430
|
"objc2",
|
|
2494
2431
|
]
|
|
2495
2432
|
|
|
2496
2433
|
[[package]]
|
|
2497
2434
|
name = "once_cell"
|
|
2498
|
-
version = "1.21.
|
|
2435
|
+
version = "1.21.4"
|
|
2499
2436
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2500
|
-
checksum = "
|
|
2437
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
2501
2438
|
|
|
2502
2439
|
[[package]]
|
|
2503
2440
|
name = "openssl"
|
|
@@ -2505,7 +2442,7 @@ version = "0.10.75"
|
|
|
2505
2442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2506
2443
|
checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
|
|
2507
2444
|
dependencies = [
|
|
2508
|
-
"bitflags 2.
|
|
2445
|
+
"bitflags 2.11.1",
|
|
2509
2446
|
"cfg-if",
|
|
2510
2447
|
"foreign-types",
|
|
2511
2448
|
"libc",
|
|
@@ -2522,7 +2459,7 @@ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
|
2522
2459
|
dependencies = [
|
|
2523
2460
|
"proc-macro2",
|
|
2524
2461
|
"quote",
|
|
2525
|
-
"syn 2.0.
|
|
2462
|
+
"syn 2.0.117",
|
|
2526
2463
|
]
|
|
2527
2464
|
|
|
2528
2465
|
[[package]]
|
|
@@ -2551,9 +2488,9 @@ dependencies = [
|
|
|
2551
2488
|
|
|
2552
2489
|
[[package]]
|
|
2553
2490
|
name = "opentelemetry"
|
|
2554
|
-
version = "0.
|
|
2491
|
+
version = "0.31.0"
|
|
2555
2492
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2556
|
-
checksum = "
|
|
2493
|
+
checksum = "b84bcd6ae87133e903af7ef497404dda70c60d0ea14895fc8a5e6722754fc2a0"
|
|
2557
2494
|
dependencies = [
|
|
2558
2495
|
"futures-core",
|
|
2559
2496
|
"futures-sink",
|
|
@@ -2565,56 +2502,54 @@ dependencies = [
|
|
|
2565
2502
|
|
|
2566
2503
|
[[package]]
|
|
2567
2504
|
name = "opentelemetry-http"
|
|
2568
|
-
version = "0.
|
|
2505
|
+
version = "0.31.0"
|
|
2569
2506
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2570
|
-
checksum = "
|
|
2507
|
+
checksum = "d7a6d09a73194e6b66df7c8f1b680f156d916a1a942abf2de06823dd02b7855d"
|
|
2571
2508
|
dependencies = [
|
|
2572
2509
|
"async-trait",
|
|
2573
2510
|
"bytes",
|
|
2574
|
-
"http
|
|
2511
|
+
"http",
|
|
2575
2512
|
"opentelemetry",
|
|
2576
|
-
"reqwest",
|
|
2577
2513
|
]
|
|
2578
2514
|
|
|
2579
2515
|
[[package]]
|
|
2580
2516
|
name = "opentelemetry-otlp"
|
|
2581
|
-
version = "0.
|
|
2517
|
+
version = "0.31.1"
|
|
2582
2518
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2583
|
-
checksum = "
|
|
2519
|
+
checksum = "1f69cd6acbb9af919df949cd1ec9e5e7fdc2ef15d234b6b795aaa525cc02f71f"
|
|
2584
2520
|
dependencies = [
|
|
2585
|
-
"http
|
|
2521
|
+
"http",
|
|
2586
2522
|
"opentelemetry",
|
|
2587
|
-
"opentelemetry-http",
|
|
2588
2523
|
"opentelemetry-proto",
|
|
2589
2524
|
"opentelemetry_sdk",
|
|
2590
2525
|
"prost",
|
|
2591
|
-
"reqwest",
|
|
2592
2526
|
"thiserror 2.0.18",
|
|
2593
2527
|
"tokio",
|
|
2594
2528
|
"tonic",
|
|
2595
|
-
"tracing",
|
|
2596
2529
|
]
|
|
2597
2530
|
|
|
2598
2531
|
[[package]]
|
|
2599
2532
|
name = "opentelemetry-proto"
|
|
2600
|
-
version = "0.
|
|
2533
|
+
version = "0.31.0"
|
|
2601
2534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2602
|
-
checksum = "
|
|
2535
|
+
checksum = "a7175df06de5eaee9909d4805a3d07e28bb752c34cab57fa9cff549da596b30f"
|
|
2603
2536
|
dependencies = [
|
|
2604
2537
|
"base64 0.22.1",
|
|
2605
|
-
"hex",
|
|
2538
|
+
"const-hex",
|
|
2606
2539
|
"opentelemetry",
|
|
2607
2540
|
"opentelemetry_sdk",
|
|
2608
2541
|
"prost",
|
|
2609
2542
|
"serde",
|
|
2543
|
+
"serde_json",
|
|
2610
2544
|
"tonic",
|
|
2545
|
+
"tonic-prost",
|
|
2611
2546
|
]
|
|
2612
2547
|
|
|
2613
2548
|
[[package]]
|
|
2614
2549
|
name = "opentelemetry_sdk"
|
|
2615
|
-
version = "0.
|
|
2550
|
+
version = "0.31.0"
|
|
2616
2551
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2617
|
-
checksum = "
|
|
2552
|
+
checksum = "e14ae4f5991976fd48df6d843de219ca6d31b01daaab2dad5af2badeded372bd"
|
|
2618
2553
|
dependencies = [
|
|
2619
2554
|
"futures-channel",
|
|
2620
2555
|
"futures-executor",
|
|
@@ -2622,7 +2557,6 @@ dependencies = [
|
|
|
2622
2557
|
"opentelemetry",
|
|
2623
2558
|
"percent-encoding",
|
|
2624
2559
|
"rand 0.9.2",
|
|
2625
|
-
"serde_json",
|
|
2626
2560
|
"thiserror 2.0.18",
|
|
2627
2561
|
"tokio",
|
|
2628
2562
|
"tokio-stream",
|
|
@@ -2630,13 +2564,13 @@ dependencies = [
|
|
|
2630
2564
|
|
|
2631
2565
|
[[package]]
|
|
2632
2566
|
name = "optipy"
|
|
2633
|
-
version = "0.1.
|
|
2567
|
+
version = "0.1.2"
|
|
2634
2568
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2635
|
-
checksum = "
|
|
2569
|
+
checksum = "8f0b56d0b41dc7b5b69e9133418df44a4b41a2700c7ee922176cb3d9801d5c51"
|
|
2636
2570
|
dependencies = [
|
|
2637
2571
|
"proc-macro2",
|
|
2638
2572
|
"quote",
|
|
2639
|
-
"syn 2.0.
|
|
2573
|
+
"syn 2.0.117",
|
|
2640
2574
|
]
|
|
2641
2575
|
|
|
2642
2576
|
[[package]]
|
|
@@ -2677,33 +2611,39 @@ version = "1.0.15"
|
|
|
2677
2611
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2678
2612
|
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2679
2613
|
|
|
2614
|
+
[[package]]
|
|
2615
|
+
name = "pastey"
|
|
2616
|
+
version = "0.2.2"
|
|
2617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2618
|
+
checksum = "c5a797f0e07bdf071d15742978fc3128ec6c22891c31a3a931513263904c982a"
|
|
2619
|
+
|
|
2680
2620
|
[[package]]
|
|
2681
2621
|
name = "pbjson"
|
|
2682
|
-
version = "0.
|
|
2622
|
+
version = "0.9.0"
|
|
2683
2623
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2684
|
-
checksum = "
|
|
2624
|
+
checksum = "e8edd1efdd8ab23ba9cb9ace3d9987a72663d5d7c9f74fa00b51d6213645cf6c"
|
|
2685
2625
|
dependencies = [
|
|
2686
|
-
"base64 0.
|
|
2626
|
+
"base64 0.22.1",
|
|
2687
2627
|
"serde",
|
|
2688
2628
|
]
|
|
2689
2629
|
|
|
2690
2630
|
[[package]]
|
|
2691
2631
|
name = "pbjson-build"
|
|
2692
|
-
version = "0.
|
|
2632
|
+
version = "0.9.0"
|
|
2693
2633
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2694
|
-
checksum = "
|
|
2634
|
+
checksum = "2ed4d5c6ae95e08ac768883c8401cf0e8deb4e6e1d6a4e1fd3d2ec4f0ec63200"
|
|
2695
2635
|
dependencies = [
|
|
2696
2636
|
"heck 0.5.0",
|
|
2697
|
-
"itertools 0.
|
|
2637
|
+
"itertools 0.14.0",
|
|
2698
2638
|
"prost",
|
|
2699
2639
|
"prost-types",
|
|
2700
2640
|
]
|
|
2701
2641
|
|
|
2702
2642
|
[[package]]
|
|
2703
2643
|
name = "pbjson-types"
|
|
2704
|
-
version = "0.
|
|
2644
|
+
version = "0.9.0"
|
|
2705
2645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2706
|
-
checksum = "
|
|
2646
|
+
checksum = "a14e2757d877c0f607a82ce1b8560e224370f159d66c5d52eb55ea187ef0350e"
|
|
2707
2647
|
dependencies = [
|
|
2708
2648
|
"bytes",
|
|
2709
2649
|
"chrono",
|
|
@@ -2734,7 +2674,7 @@ dependencies = [
|
|
|
2734
2674
|
"proc-macro2",
|
|
2735
2675
|
"proc-macro2-diagnostics",
|
|
2736
2676
|
"quote",
|
|
2737
|
-
"syn 2.0.
|
|
2677
|
+
"syn 2.0.117",
|
|
2738
2678
|
]
|
|
2739
2679
|
|
|
2740
2680
|
[[package]]
|
|
@@ -2792,7 +2732,7 @@ dependencies = [
|
|
|
2792
2732
|
"pest_meta",
|
|
2793
2733
|
"proc-macro2",
|
|
2794
2734
|
"quote",
|
|
2795
|
-
"syn 2.0.
|
|
2735
|
+
"syn 2.0.117",
|
|
2796
2736
|
]
|
|
2797
2737
|
|
|
2798
2738
|
[[package]]
|
|
@@ -2811,7 +2751,18 @@ version = "0.6.5"
|
|
|
2811
2751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2812
2752
|
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
|
2813
2753
|
dependencies = [
|
|
2814
|
-
"fixedbitset",
|
|
2754
|
+
"fixedbitset 0.4.2",
|
|
2755
|
+
"indexmap 2.13.0",
|
|
2756
|
+
]
|
|
2757
|
+
|
|
2758
|
+
[[package]]
|
|
2759
|
+
name = "petgraph"
|
|
2760
|
+
version = "0.8.3"
|
|
2761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2762
|
+
checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
|
|
2763
|
+
dependencies = [
|
|
2764
|
+
"fixedbitset 0.5.7",
|
|
2765
|
+
"hashbrown 0.15.5",
|
|
2815
2766
|
"indexmap 2.13.0",
|
|
2816
2767
|
]
|
|
2817
2768
|
|
|
@@ -2855,29 +2806,29 @@ dependencies = [
|
|
|
2855
2806
|
|
|
2856
2807
|
[[package]]
|
|
2857
2808
|
name = "pin-project"
|
|
2858
|
-
version = "1.1.
|
|
2809
|
+
version = "1.1.12"
|
|
2859
2810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2860
|
-
checksum = "
|
|
2811
|
+
checksum = "cbf0d9e68100b3a7989b4901972f265cd542e560a3a8a724e1e20322f4d06ce9"
|
|
2861
2812
|
dependencies = [
|
|
2862
2813
|
"pin-project-internal",
|
|
2863
2814
|
]
|
|
2864
2815
|
|
|
2865
2816
|
[[package]]
|
|
2866
2817
|
name = "pin-project-internal"
|
|
2867
|
-
version = "1.1.
|
|
2818
|
+
version = "1.1.12"
|
|
2868
2819
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2869
|
-
checksum = "
|
|
2820
|
+
checksum = "a990e22f43e84855daf260dded30524ef4a9021cc7541c26540500a50b624389"
|
|
2870
2821
|
dependencies = [
|
|
2871
2822
|
"proc-macro2",
|
|
2872
2823
|
"quote",
|
|
2873
|
-
"syn 2.0.
|
|
2824
|
+
"syn 2.0.117",
|
|
2874
2825
|
]
|
|
2875
2826
|
|
|
2876
2827
|
[[package]]
|
|
2877
2828
|
name = "pin-project-lite"
|
|
2878
|
-
version = "0.2.
|
|
2829
|
+
version = "0.2.17"
|
|
2879
2830
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2880
|
-
checksum = "
|
|
2831
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
2881
2832
|
|
|
2882
2833
|
[[package]]
|
|
2883
2834
|
name = "pin-utils"
|
|
@@ -2958,7 +2909,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2958
2909
|
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
2959
2910
|
dependencies = [
|
|
2960
2911
|
"proc-macro2",
|
|
2961
|
-
"syn 2.0.
|
|
2912
|
+
"syn 2.0.117",
|
|
2962
2913
|
]
|
|
2963
2914
|
|
|
2964
2915
|
[[package]]
|
|
@@ -2987,16 +2938,31 @@ checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
|
|
|
2987
2938
|
dependencies = [
|
|
2988
2939
|
"proc-macro2",
|
|
2989
2940
|
"quote",
|
|
2990
|
-
"syn 2.0.
|
|
2941
|
+
"syn 2.0.117",
|
|
2991
2942
|
"version_check",
|
|
2992
2943
|
"yansi",
|
|
2993
2944
|
]
|
|
2994
2945
|
|
|
2946
|
+
[[package]]
|
|
2947
|
+
name = "proptest"
|
|
2948
|
+
version = "1.11.0"
|
|
2949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2950
|
+
checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
2951
|
+
dependencies = [
|
|
2952
|
+
"bitflags 2.11.1",
|
|
2953
|
+
"num-traits",
|
|
2954
|
+
"rand 0.9.2",
|
|
2955
|
+
"rand_chacha 0.9.0",
|
|
2956
|
+
"rand_xorshift",
|
|
2957
|
+
"regex-syntax",
|
|
2958
|
+
"unarray",
|
|
2959
|
+
]
|
|
2960
|
+
|
|
2995
2961
|
[[package]]
|
|
2996
2962
|
name = "prost"
|
|
2997
|
-
version = "0.
|
|
2963
|
+
version = "0.14.3"
|
|
2998
2964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2999
|
-
checksum = "
|
|
2965
|
+
checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
|
|
3000
2966
|
dependencies = [
|
|
3001
2967
|
"bytes",
|
|
3002
2968
|
"prost-derive",
|
|
@@ -3004,42 +2970,43 @@ dependencies = [
|
|
|
3004
2970
|
|
|
3005
2971
|
[[package]]
|
|
3006
2972
|
name = "prost-build"
|
|
3007
|
-
version = "0.
|
|
2973
|
+
version = "0.14.3"
|
|
3008
2974
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3009
|
-
checksum = "
|
|
2975
|
+
checksum = "343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7"
|
|
3010
2976
|
dependencies = [
|
|
3011
2977
|
"heck 0.5.0",
|
|
3012
2978
|
"itertools 0.14.0",
|
|
3013
2979
|
"log",
|
|
3014
2980
|
"multimap",
|
|
3015
|
-
"
|
|
3016
|
-
"petgraph",
|
|
2981
|
+
"petgraph 0.8.3",
|
|
3017
2982
|
"prettyplease",
|
|
3018
2983
|
"prost",
|
|
3019
2984
|
"prost-types",
|
|
2985
|
+
"pulldown-cmark",
|
|
2986
|
+
"pulldown-cmark-to-cmark",
|
|
3020
2987
|
"regex",
|
|
3021
|
-
"syn 2.0.
|
|
2988
|
+
"syn 2.0.117",
|
|
3022
2989
|
"tempfile",
|
|
3023
2990
|
]
|
|
3024
2991
|
|
|
3025
2992
|
[[package]]
|
|
3026
2993
|
name = "prost-derive"
|
|
3027
|
-
version = "0.
|
|
2994
|
+
version = "0.14.3"
|
|
3028
2995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3029
|
-
checksum = "
|
|
2996
|
+
checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
|
|
3030
2997
|
dependencies = [
|
|
3031
2998
|
"anyhow",
|
|
3032
2999
|
"itertools 0.14.0",
|
|
3033
3000
|
"proc-macro2",
|
|
3034
3001
|
"quote",
|
|
3035
|
-
"syn 2.0.
|
|
3002
|
+
"syn 2.0.117",
|
|
3036
3003
|
]
|
|
3037
3004
|
|
|
3038
3005
|
[[package]]
|
|
3039
3006
|
name = "prost-types"
|
|
3040
|
-
version = "0.
|
|
3007
|
+
version = "0.14.3"
|
|
3041
3008
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3042
|
-
checksum = "
|
|
3009
|
+
checksum = "8991c4cbdb8bc5b11f0b074ffe286c30e523de90fee5ba8132f1399f23cb3dd7"
|
|
3043
3010
|
dependencies = [
|
|
3044
3011
|
"prost",
|
|
3045
3012
|
]
|
|
@@ -3060,6 +3027,26 @@ dependencies = [
|
|
|
3060
3027
|
"psl-types",
|
|
3061
3028
|
]
|
|
3062
3029
|
|
|
3030
|
+
[[package]]
|
|
3031
|
+
name = "pulldown-cmark"
|
|
3032
|
+
version = "0.13.3"
|
|
3033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3034
|
+
checksum = "7c3a14896dfa883796f1cb410461aef38810ea05f2b2c33c5aded3649095fdad"
|
|
3035
|
+
dependencies = [
|
|
3036
|
+
"bitflags 2.11.1",
|
|
3037
|
+
"memchr",
|
|
3038
|
+
"unicase",
|
|
3039
|
+
]
|
|
3040
|
+
|
|
3041
|
+
[[package]]
|
|
3042
|
+
name = "pulldown-cmark-to-cmark"
|
|
3043
|
+
version = "22.0.0"
|
|
3044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3045
|
+
checksum = "50793def1b900256624a709439404384204a5dc3a6ec580281bfaac35e882e90"
|
|
3046
|
+
dependencies = [
|
|
3047
|
+
"pulldown-cmark",
|
|
3048
|
+
]
|
|
3049
|
+
|
|
3063
3050
|
[[package]]
|
|
3064
3051
|
name = "pyo3"
|
|
3065
3052
|
version = "0.27.2"
|
|
@@ -3102,7 +3089,7 @@ checksum = "bcd7d70ee0ca1661c40407e6f84e4463ef2658c90a9e2fbbd4515b2bcdfcaeca"
|
|
|
3102
3089
|
dependencies = [
|
|
3103
3090
|
"proc-macro2",
|
|
3104
3091
|
"quote",
|
|
3105
|
-
"syn 2.0.
|
|
3092
|
+
"syn 2.0.117",
|
|
3106
3093
|
]
|
|
3107
3094
|
|
|
3108
3095
|
[[package]]
|
|
@@ -3144,7 +3131,7 @@ dependencies = [
|
|
|
3144
3131
|
"proc-macro2",
|
|
3145
3132
|
"pyo3-macros-backend",
|
|
3146
3133
|
"quote",
|
|
3147
|
-
"syn 2.0.
|
|
3134
|
+
"syn 2.0.117",
|
|
3148
3135
|
]
|
|
3149
3136
|
|
|
3150
3137
|
[[package]]
|
|
@@ -3157,30 +3144,29 @@ dependencies = [
|
|
|
3157
3144
|
"proc-macro2",
|
|
3158
3145
|
"pyo3-build-config",
|
|
3159
3146
|
"quote",
|
|
3160
|
-
"syn 2.0.
|
|
3147
|
+
"syn 2.0.117",
|
|
3161
3148
|
]
|
|
3162
3149
|
|
|
3163
3150
|
[[package]]
|
|
3164
3151
|
name = "pyo3-opentelemetry"
|
|
3165
|
-
version = "0.
|
|
3152
|
+
version = "0.7.0"
|
|
3166
3153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3167
|
-
checksum = "
|
|
3154
|
+
checksum = "3d7d1e83566a3d349671a417dbde37b76fde16a6f5893de038dc897db071c46c"
|
|
3168
3155
|
dependencies = [
|
|
3169
|
-
"opentelemetry",
|
|
3170
|
-
"opentelemetry_sdk",
|
|
3171
3156
|
"pyo3",
|
|
3172
3157
|
"pyo3-opentelemetry-macros",
|
|
3158
|
+
"qcs-dependencies-client",
|
|
3173
3159
|
]
|
|
3174
3160
|
|
|
3175
3161
|
[[package]]
|
|
3176
3162
|
name = "pyo3-opentelemetry-macros"
|
|
3177
|
-
version = "0.
|
|
3163
|
+
version = "0.7.0"
|
|
3178
3164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3179
|
-
checksum = "
|
|
3165
|
+
checksum = "d6e0e861730227d0b1f08f4dc4641d787ae4627653ceae7624d43e4190bc68b2"
|
|
3180
3166
|
dependencies = [
|
|
3181
3167
|
"proc-macro2",
|
|
3182
3168
|
"quote",
|
|
3183
|
-
"syn 2.0.
|
|
3169
|
+
"syn 2.0.117",
|
|
3184
3170
|
]
|
|
3185
3171
|
|
|
3186
3172
|
[[package]]
|
|
@@ -3217,37 +3203,42 @@ dependencies = [
|
|
|
3217
3203
|
"proc-macro2",
|
|
3218
3204
|
"quote",
|
|
3219
3205
|
"rustpython-parser",
|
|
3220
|
-
"syn 2.0.
|
|
3206
|
+
"syn 2.0.117",
|
|
3221
3207
|
]
|
|
3222
3208
|
|
|
3223
3209
|
[[package]]
|
|
3224
3210
|
name = "pyo3-tracing-subscriber"
|
|
3225
|
-
version = "0.
|
|
3211
|
+
version = "0.5.0"
|
|
3226
3212
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3227
|
-
checksum = "
|
|
3213
|
+
checksum = "4b5001efbec2c29b8c89834447ea2328b8d9bf8ed864f8a3ebeab3484ec1c9f7"
|
|
3228
3214
|
dependencies = [
|
|
3229
3215
|
"futures-core",
|
|
3230
|
-
"handlebars",
|
|
3231
|
-
"opentelemetry",
|
|
3232
|
-
"opentelemetry-otlp",
|
|
3233
|
-
"opentelemetry-proto",
|
|
3234
|
-
"opentelemetry_sdk",
|
|
3235
3216
|
"pyo3",
|
|
3236
3217
|
"pyo3-async-runtimes",
|
|
3218
|
+
"qcs-dependencies-client",
|
|
3237
3219
|
"rigetti-pyo3",
|
|
3238
3220
|
"serde",
|
|
3239
3221
|
"serde_json",
|
|
3240
3222
|
"thiserror 2.0.18",
|
|
3241
3223
|
"tokio",
|
|
3242
|
-
"tonic",
|
|
3243
3224
|
"tracing",
|
|
3244
|
-
"tracing-opentelemetry",
|
|
3245
3225
|
"tracing-subscriber",
|
|
3246
3226
|
]
|
|
3247
3227
|
|
|
3228
|
+
[[package]]
|
|
3229
|
+
name = "pyo3-tracing-subscriber-build"
|
|
3230
|
+
version = "0.5.0"
|
|
3231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3232
|
+
checksum = "4cf575aa55922da7d8fceb3e2f27f4eb609135b67d84a17c65d70246de3997e5"
|
|
3233
|
+
dependencies = [
|
|
3234
|
+
"handlebars",
|
|
3235
|
+
"serde",
|
|
3236
|
+
"thiserror 2.0.18",
|
|
3237
|
+
]
|
|
3238
|
+
|
|
3248
3239
|
[[package]]
|
|
3249
3240
|
name = "qcs"
|
|
3250
|
-
version = "0.26.
|
|
3241
|
+
version = "0.26.3-rc.0"
|
|
3251
3242
|
dependencies = [
|
|
3252
3243
|
"assert2",
|
|
3253
3244
|
"async-trait",
|
|
@@ -3270,12 +3261,8 @@ dependencies = [
|
|
|
3270
3261
|
"num",
|
|
3271
3262
|
"numpy",
|
|
3272
3263
|
"oauth2-test-server",
|
|
3273
|
-
"opentelemetry",
|
|
3274
|
-
"opentelemetry_sdk",
|
|
3275
3264
|
"optipy",
|
|
3276
|
-
"
|
|
3277
|
-
"pbjson-types",
|
|
3278
|
-
"prost",
|
|
3265
|
+
"pastey",
|
|
3279
3266
|
"pyo3",
|
|
3280
3267
|
"pyo3-async-runtimes",
|
|
3281
3268
|
"pyo3-build-config",
|
|
@@ -3283,12 +3270,13 @@ dependencies = [
|
|
|
3283
3270
|
"pyo3-opentelemetry",
|
|
3284
3271
|
"pyo3-stub-gen",
|
|
3285
3272
|
"pyo3-tracing-subscriber",
|
|
3273
|
+
"pyo3-tracing-subscriber-build",
|
|
3286
3274
|
"qcs-api-client-common",
|
|
3287
3275
|
"qcs-api-client-grpc",
|
|
3288
3276
|
"qcs-api-client-openapi",
|
|
3277
|
+
"qcs-dependencies-client",
|
|
3289
3278
|
"quil-rs",
|
|
3290
3279
|
"regex",
|
|
3291
|
-
"reqwest",
|
|
3292
3280
|
"rigetti-pyo3",
|
|
3293
3281
|
"rmp-serde",
|
|
3294
3282
|
"rstest",
|
|
@@ -3301,7 +3289,6 @@ dependencies = [
|
|
|
3301
3289
|
"tokio",
|
|
3302
3290
|
"tokio-util",
|
|
3303
3291
|
"toml 0.9.11+spec-1.1.0",
|
|
3304
|
-
"tonic",
|
|
3305
3292
|
"tracing",
|
|
3306
3293
|
"tracing-subscriber",
|
|
3307
3294
|
"uuid",
|
|
@@ -3311,9 +3298,9 @@ dependencies = [
|
|
|
3311
3298
|
|
|
3312
3299
|
[[package]]
|
|
3313
3300
|
name = "qcs-api-client-common"
|
|
3314
|
-
version = "0.
|
|
3301
|
+
version = "0.18.1"
|
|
3315
3302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3316
|
-
checksum = "
|
|
3303
|
+
checksum = "652f68ce5f08fb59e203753fb27e57c9cb23b8b857126dba9b7dbd4b056076fe"
|
|
3317
3304
|
dependencies = [
|
|
3318
3305
|
"async-tempfile",
|
|
3319
3306
|
"async-trait",
|
|
@@ -3322,19 +3309,17 @@ dependencies = [
|
|
|
3322
3309
|
"figment",
|
|
3323
3310
|
"futures",
|
|
3324
3311
|
"home",
|
|
3325
|
-
"http 1.4.0",
|
|
3326
3312
|
"http-body-util",
|
|
3327
|
-
"hyper
|
|
3313
|
+
"hyper",
|
|
3328
3314
|
"hyper-util",
|
|
3329
3315
|
"jsonwebtoken 9.3.1",
|
|
3330
3316
|
"oauth2",
|
|
3331
3317
|
"optipy",
|
|
3332
|
-
"paste",
|
|
3333
3318
|
"pyo3",
|
|
3334
3319
|
"pyo3-async-runtimes",
|
|
3335
3320
|
"pyo3-build-config",
|
|
3336
3321
|
"pyo3-stub-gen",
|
|
3337
|
-
"
|
|
3322
|
+
"qcs-dependencies-client",
|
|
3338
3323
|
"rigetti-pyo3",
|
|
3339
3324
|
"serde",
|
|
3340
3325
|
"serde_json",
|
|
@@ -3353,38 +3338,24 @@ dependencies = [
|
|
|
3353
3338
|
|
|
3354
3339
|
[[package]]
|
|
3355
3340
|
name = "qcs-api-client-grpc"
|
|
3356
|
-
version = "0.
|
|
3341
|
+
version = "0.18.1"
|
|
3357
3342
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3358
|
-
checksum = "
|
|
3343
|
+
checksum = "1a4fcd8b43da659fbcb77a08c9509bfe38ed22a49d95c9dcc9bb9ad994f3b938"
|
|
3359
3344
|
dependencies = [
|
|
3360
3345
|
"backoff",
|
|
3361
3346
|
"futures-util",
|
|
3362
|
-
"http
|
|
3363
|
-
"http-body 1.0.1",
|
|
3347
|
+
"http-body",
|
|
3364
3348
|
"http-body-util",
|
|
3365
|
-
"hyper
|
|
3366
|
-
"hyper-proxy2",
|
|
3349
|
+
"hyper",
|
|
3367
3350
|
"hyper-socks2",
|
|
3368
3351
|
"hyper-util",
|
|
3369
|
-
"opentelemetry",
|
|
3370
|
-
"opentelemetry-http",
|
|
3371
|
-
"opentelemetry_sdk",
|
|
3372
|
-
"pbjson",
|
|
3373
|
-
"pbjson-build",
|
|
3374
|
-
"pbjson-types",
|
|
3375
|
-
"prost",
|
|
3376
|
-
"prost-build",
|
|
3377
3352
|
"qcs-api-client-common",
|
|
3353
|
+
"qcs-dependencies-client",
|
|
3354
|
+
"rigetti-hyper-proxy",
|
|
3378
3355
|
"serde",
|
|
3379
3356
|
"thiserror 2.0.18",
|
|
3380
3357
|
"tokio",
|
|
3381
|
-
"tonic",
|
|
3382
|
-
"tonic-build",
|
|
3383
|
-
"tonic-web",
|
|
3384
|
-
"tower",
|
|
3385
|
-
"tower-http 0.5.2",
|
|
3386
3358
|
"tracing",
|
|
3387
|
-
"tracing-opentelemetry",
|
|
3388
3359
|
"url",
|
|
3389
3360
|
"urlpattern",
|
|
3390
3361
|
"uuid",
|
|
@@ -3392,16 +3363,14 @@ dependencies = [
|
|
|
3392
3363
|
|
|
3393
3364
|
[[package]]
|
|
3394
3365
|
name = "qcs-api-client-openapi"
|
|
3395
|
-
version = "0.
|
|
3366
|
+
version = "0.19.1"
|
|
3396
3367
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3397
|
-
checksum = "
|
|
3368
|
+
checksum = "c76e1c7d1599ac487c7b1e19db7dc8682e5e076420c106da7b160ffd10b57932"
|
|
3398
3369
|
dependencies = [
|
|
3399
3370
|
"anyhow",
|
|
3400
|
-
"http
|
|
3371
|
+
"http",
|
|
3401
3372
|
"qcs-api-client-common",
|
|
3402
|
-
"
|
|
3403
|
-
"reqwest-middleware",
|
|
3404
|
-
"reqwest-tracing",
|
|
3373
|
+
"qcs-dependencies-client",
|
|
3405
3374
|
"serde",
|
|
3406
3375
|
"serde_json",
|
|
3407
3376
|
"serde_path_to_error",
|
|
@@ -3409,11 +3378,41 @@ dependencies = [
|
|
|
3409
3378
|
"serde_with",
|
|
3410
3379
|
"tokio",
|
|
3411
3380
|
"tracing",
|
|
3412
|
-
"tracing-opentelemetry",
|
|
3413
3381
|
"url",
|
|
3414
3382
|
"urlpattern",
|
|
3415
3383
|
]
|
|
3416
3384
|
|
|
3385
|
+
[[package]]
|
|
3386
|
+
name = "qcs-dependencies-client"
|
|
3387
|
+
version = "0.3.2"
|
|
3388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3389
|
+
checksum = "a1a7391bf8f8b9f92aea059531f7071c8b6c487f47b8d0536e56fc968c6359dd"
|
|
3390
|
+
dependencies = [
|
|
3391
|
+
"http",
|
|
3392
|
+
"opentelemetry",
|
|
3393
|
+
"opentelemetry-http",
|
|
3394
|
+
"opentelemetry-otlp",
|
|
3395
|
+
"opentelemetry-proto",
|
|
3396
|
+
"opentelemetry_sdk",
|
|
3397
|
+
"pbjson",
|
|
3398
|
+
"pbjson-build",
|
|
3399
|
+
"pbjson-types",
|
|
3400
|
+
"prost",
|
|
3401
|
+
"prost-build",
|
|
3402
|
+
"prost-types",
|
|
3403
|
+
"reqwest 0.13.3",
|
|
3404
|
+
"reqwest-middleware",
|
|
3405
|
+
"reqwest-tracing",
|
|
3406
|
+
"tonic",
|
|
3407
|
+
"tonic-build",
|
|
3408
|
+
"tonic-health",
|
|
3409
|
+
"tonic-prost",
|
|
3410
|
+
"tonic-prost-build",
|
|
3411
|
+
"tower",
|
|
3412
|
+
"tower-http 0.6.8",
|
|
3413
|
+
"tracing-opentelemetry",
|
|
3414
|
+
]
|
|
3415
|
+
|
|
3417
3416
|
[[package]]
|
|
3418
3417
|
name = "quil-rs"
|
|
3419
3418
|
version = "0.35.0"
|
|
@@ -3433,7 +3432,7 @@ dependencies = [
|
|
|
3433
3432
|
"once_cell",
|
|
3434
3433
|
"optipy",
|
|
3435
3434
|
"paste",
|
|
3436
|
-
"petgraph",
|
|
3435
|
+
"petgraph 0.6.5",
|
|
3437
3436
|
"pyo3",
|
|
3438
3437
|
"pyo3-build-config",
|
|
3439
3438
|
"pyo3-stub-gen",
|
|
@@ -3457,8 +3456,8 @@ dependencies = [
|
|
|
3457
3456
|
"quinn-proto",
|
|
3458
3457
|
"quinn-udp",
|
|
3459
3458
|
"rustc-hash 2.1.1",
|
|
3460
|
-
"rustls
|
|
3461
|
-
"socket2
|
|
3459
|
+
"rustls",
|
|
3460
|
+
"socket2",
|
|
3462
3461
|
"thiserror 2.0.18",
|
|
3463
3462
|
"tokio",
|
|
3464
3463
|
"tracing",
|
|
@@ -3471,13 +3470,14 @@ version = "0.11.13"
|
|
|
3471
3470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3472
3471
|
checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
|
|
3473
3472
|
dependencies = [
|
|
3473
|
+
"aws-lc-rs",
|
|
3474
3474
|
"bytes",
|
|
3475
3475
|
"getrandom 0.3.4",
|
|
3476
3476
|
"lru-slab",
|
|
3477
3477
|
"rand 0.9.2",
|
|
3478
3478
|
"ring",
|
|
3479
3479
|
"rustc-hash 2.1.1",
|
|
3480
|
-
"rustls
|
|
3480
|
+
"rustls",
|
|
3481
3481
|
"rustls-pki-types",
|
|
3482
3482
|
"slab",
|
|
3483
3483
|
"thiserror 2.0.18",
|
|
@@ -3495,16 +3495,16 @@ dependencies = [
|
|
|
3495
3495
|
"cfg_aliases",
|
|
3496
3496
|
"libc",
|
|
3497
3497
|
"once_cell",
|
|
3498
|
-
"socket2
|
|
3498
|
+
"socket2",
|
|
3499
3499
|
"tracing",
|
|
3500
|
-
"windows-sys 0.
|
|
3500
|
+
"windows-sys 0.59.0",
|
|
3501
3501
|
]
|
|
3502
3502
|
|
|
3503
3503
|
[[package]]
|
|
3504
3504
|
name = "quote"
|
|
3505
|
-
version = "1.0.
|
|
3505
|
+
version = "1.0.45"
|
|
3506
3506
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3507
|
-
checksum = "
|
|
3507
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
3508
3508
|
dependencies = [
|
|
3509
3509
|
"proc-macro2",
|
|
3510
3510
|
]
|
|
@@ -3584,6 +3584,15 @@ dependencies = [
|
|
|
3584
3584
|
"rand 0.8.5",
|
|
3585
3585
|
]
|
|
3586
3586
|
|
|
3587
|
+
[[package]]
|
|
3588
|
+
name = "rand_xorshift"
|
|
3589
|
+
version = "0.4.0"
|
|
3590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3591
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
3592
|
+
dependencies = [
|
|
3593
|
+
"rand_core 0.9.5",
|
|
3594
|
+
]
|
|
3595
|
+
|
|
3587
3596
|
[[package]]
|
|
3588
3597
|
name = "rawpointer"
|
|
3589
3598
|
version = "0.2.1"
|
|
@@ -3616,7 +3625,7 @@ version = "0.5.18"
|
|
|
3616
3625
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3617
3626
|
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
3618
3627
|
dependencies = [
|
|
3619
|
-
"bitflags 2.
|
|
3628
|
+
"bitflags 2.11.1",
|
|
3620
3629
|
]
|
|
3621
3630
|
|
|
3622
3631
|
[[package]]
|
|
@@ -3636,7 +3645,7 @@ checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
|
3636
3645
|
dependencies = [
|
|
3637
3646
|
"proc-macro2",
|
|
3638
3647
|
"quote",
|
|
3639
|
-
"syn 2.0.
|
|
3648
|
+
"syn 2.0.117",
|
|
3640
3649
|
]
|
|
3641
3650
|
|
|
3642
3651
|
[[package]]
|
|
@@ -3685,15 +3694,14 @@ dependencies = [
|
|
|
3685
3694
|
"cookie",
|
|
3686
3695
|
"cookie_store",
|
|
3687
3696
|
"encoding_rs",
|
|
3688
|
-
"futures-channel",
|
|
3689
3697
|
"futures-core",
|
|
3690
3698
|
"futures-util",
|
|
3691
|
-
"h2
|
|
3692
|
-
"http
|
|
3693
|
-
"http-body
|
|
3699
|
+
"h2",
|
|
3700
|
+
"http",
|
|
3701
|
+
"http-body",
|
|
3694
3702
|
"http-body-util",
|
|
3695
|
-
"hyper
|
|
3696
|
-
"hyper-rustls
|
|
3703
|
+
"hyper",
|
|
3704
|
+
"hyper-rustls",
|
|
3697
3705
|
"hyper-tls",
|
|
3698
3706
|
"hyper-util",
|
|
3699
3707
|
"js-sys",
|
|
@@ -3704,8 +3712,7 @@ dependencies = [
|
|
|
3704
3712
|
"percent-encoding",
|
|
3705
3713
|
"pin-project-lite",
|
|
3706
3714
|
"quinn",
|
|
3707
|
-
"rustls
|
|
3708
|
-
"rustls-native-certs 0.8.3",
|
|
3715
|
+
"rustls",
|
|
3709
3716
|
"rustls-pki-types",
|
|
3710
3717
|
"serde",
|
|
3711
3718
|
"serde_json",
|
|
@@ -3713,7 +3720,7 @@ dependencies = [
|
|
|
3713
3720
|
"sync_wrapper",
|
|
3714
3721
|
"tokio",
|
|
3715
3722
|
"tokio-native-tls",
|
|
3716
|
-
"tokio-rustls
|
|
3723
|
+
"tokio-rustls",
|
|
3717
3724
|
"tokio-util",
|
|
3718
3725
|
"tower",
|
|
3719
3726
|
"tower-http 0.6.8",
|
|
@@ -3726,52 +3733,112 @@ dependencies = [
|
|
|
3726
3733
|
"webpki-roots",
|
|
3727
3734
|
]
|
|
3728
3735
|
|
|
3736
|
+
[[package]]
|
|
3737
|
+
name = "reqwest"
|
|
3738
|
+
version = "0.13.3"
|
|
3739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3740
|
+
checksum = "62e0021ea2c22aed41653bc7e1419abb2c97e038ff2c33d0e1309e49a97deec0"
|
|
3741
|
+
dependencies = [
|
|
3742
|
+
"base64 0.22.1",
|
|
3743
|
+
"bytes",
|
|
3744
|
+
"futures-core",
|
|
3745
|
+
"futures-util",
|
|
3746
|
+
"http",
|
|
3747
|
+
"http-body",
|
|
3748
|
+
"http-body-util",
|
|
3749
|
+
"hyper",
|
|
3750
|
+
"hyper-rustls",
|
|
3751
|
+
"hyper-util",
|
|
3752
|
+
"js-sys",
|
|
3753
|
+
"log",
|
|
3754
|
+
"mime_guess",
|
|
3755
|
+
"percent-encoding",
|
|
3756
|
+
"pin-project-lite",
|
|
3757
|
+
"quinn",
|
|
3758
|
+
"rustls",
|
|
3759
|
+
"rustls-pki-types",
|
|
3760
|
+
"rustls-platform-verifier",
|
|
3761
|
+
"serde",
|
|
3762
|
+
"serde_json",
|
|
3763
|
+
"serde_urlencoded",
|
|
3764
|
+
"sync_wrapper",
|
|
3765
|
+
"tokio",
|
|
3766
|
+
"tokio-rustls",
|
|
3767
|
+
"tower",
|
|
3768
|
+
"tower-http 0.6.8",
|
|
3769
|
+
"tower-service",
|
|
3770
|
+
"url",
|
|
3771
|
+
"wasm-bindgen",
|
|
3772
|
+
"wasm-bindgen-futures",
|
|
3773
|
+
"web-sys",
|
|
3774
|
+
]
|
|
3775
|
+
|
|
3729
3776
|
[[package]]
|
|
3730
3777
|
name = "reqwest-middleware"
|
|
3731
|
-
version = "0.
|
|
3778
|
+
version = "0.5.1"
|
|
3732
3779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3733
|
-
checksum = "
|
|
3780
|
+
checksum = "199dda04a536b532d0cc04d7979e39b1c763ea749bf91507017069c00b96056f"
|
|
3734
3781
|
dependencies = [
|
|
3735
3782
|
"anyhow",
|
|
3736
3783
|
"async-trait",
|
|
3737
|
-
"http
|
|
3738
|
-
"reqwest",
|
|
3784
|
+
"http",
|
|
3785
|
+
"reqwest 0.13.3",
|
|
3739
3786
|
"serde",
|
|
3740
|
-
"thiserror
|
|
3787
|
+
"thiserror 2.0.18",
|
|
3741
3788
|
"tower-service",
|
|
3742
3789
|
]
|
|
3743
3790
|
|
|
3744
3791
|
[[package]]
|
|
3745
3792
|
name = "reqwest-tracing"
|
|
3746
|
-
version = "0.
|
|
3793
|
+
version = "0.7.0"
|
|
3747
3794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3748
|
-
checksum = "
|
|
3795
|
+
checksum = "d5c1a1510677d43dce9e9c0c07fc5db8772c0e5a43e4f9cef75a11affa05a578"
|
|
3749
3796
|
dependencies = [
|
|
3750
3797
|
"anyhow",
|
|
3751
3798
|
"async-trait",
|
|
3752
3799
|
"getrandom 0.2.17",
|
|
3753
|
-
"http
|
|
3800
|
+
"http",
|
|
3754
3801
|
"matchit",
|
|
3755
3802
|
"opentelemetry",
|
|
3756
|
-
"reqwest",
|
|
3803
|
+
"reqwest 0.13.3",
|
|
3757
3804
|
"reqwest-middleware",
|
|
3758
3805
|
"tracing",
|
|
3759
3806
|
"tracing-opentelemetry",
|
|
3760
3807
|
]
|
|
3761
3808
|
|
|
3809
|
+
[[package]]
|
|
3810
|
+
name = "rigetti-hyper-proxy"
|
|
3811
|
+
version = "1.1.1"
|
|
3812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3813
|
+
checksum = "3f8f51d98fc811a23d1fd905719dd7dc2e5620a8775a22b7f9b52dab79a53958"
|
|
3814
|
+
dependencies = [
|
|
3815
|
+
"bytes",
|
|
3816
|
+
"futures-util",
|
|
3817
|
+
"headers",
|
|
3818
|
+
"http",
|
|
3819
|
+
"hyper",
|
|
3820
|
+
"hyper-rustls",
|
|
3821
|
+
"hyper-util",
|
|
3822
|
+
"pin-project-lite",
|
|
3823
|
+
"tokio",
|
|
3824
|
+
"tokio-rustls",
|
|
3825
|
+
"tower-service",
|
|
3826
|
+
]
|
|
3827
|
+
|
|
3762
3828
|
[[package]]
|
|
3763
3829
|
name = "rigetti-pyo3"
|
|
3764
|
-
version = "0.5.
|
|
3830
|
+
version = "0.5.5"
|
|
3765
3831
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3766
|
-
checksum = "
|
|
3832
|
+
checksum = "af07bc1eb22f60196c1993dcf3b7d81761ca77eb631ad50d9ff357556dd6ccc7"
|
|
3767
3833
|
dependencies = [
|
|
3768
3834
|
"indexmap 2.13.0",
|
|
3769
3835
|
"itertools 0.14.0",
|
|
3770
|
-
"opentelemetry",
|
|
3771
3836
|
"optipy",
|
|
3837
|
+
"pastey",
|
|
3772
3838
|
"pyo3",
|
|
3773
3839
|
"pyo3-async-runtimes",
|
|
3774
3840
|
"pyo3-stub-gen",
|
|
3841
|
+
"qcs-dependencies-client",
|
|
3775
3842
|
"tokio",
|
|
3776
3843
|
]
|
|
3777
3844
|
|
|
@@ -3853,7 +3920,7 @@ dependencies = [
|
|
|
3853
3920
|
"regex",
|
|
3854
3921
|
"relative-path",
|
|
3855
3922
|
"rustc_version",
|
|
3856
|
-
"syn 2.0.
|
|
3923
|
+
"syn 2.0.117",
|
|
3857
3924
|
"unicode-ident",
|
|
3858
3925
|
]
|
|
3859
3926
|
|
|
@@ -3884,27 +3951,13 @@ version = "1.1.3"
|
|
|
3884
3951
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3885
3952
|
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
3886
3953
|
dependencies = [
|
|
3887
|
-
"bitflags 2.
|
|
3954
|
+
"bitflags 2.11.1",
|
|
3888
3955
|
"errno",
|
|
3889
3956
|
"libc",
|
|
3890
3957
|
"linux-raw-sys",
|
|
3891
3958
|
"windows-sys 0.61.2",
|
|
3892
3959
|
]
|
|
3893
3960
|
|
|
3894
|
-
[[package]]
|
|
3895
|
-
name = "rustls"
|
|
3896
|
-
version = "0.22.4"
|
|
3897
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3898
|
-
checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
|
|
3899
|
-
dependencies = [
|
|
3900
|
-
"log",
|
|
3901
|
-
"ring",
|
|
3902
|
-
"rustls-pki-types",
|
|
3903
|
-
"rustls-webpki 0.102.8",
|
|
3904
|
-
"subtle",
|
|
3905
|
-
"zeroize",
|
|
3906
|
-
]
|
|
3907
|
-
|
|
3908
3961
|
[[package]]
|
|
3909
3962
|
name = "rustls"
|
|
3910
3963
|
version = "0.23.36"
|
|
@@ -3916,24 +3969,11 @@ dependencies = [
|
|
|
3916
3969
|
"once_cell",
|
|
3917
3970
|
"ring",
|
|
3918
3971
|
"rustls-pki-types",
|
|
3919
|
-
"rustls-webpki
|
|
3972
|
+
"rustls-webpki",
|
|
3920
3973
|
"subtle",
|
|
3921
3974
|
"zeroize",
|
|
3922
3975
|
]
|
|
3923
3976
|
|
|
3924
|
-
[[package]]
|
|
3925
|
-
name = "rustls-native-certs"
|
|
3926
|
-
version = "0.7.3"
|
|
3927
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3928
|
-
checksum = "e5bfb394eeed242e909609f56089eecfe5fda225042e8b171791b9c95f5931e5"
|
|
3929
|
-
dependencies = [
|
|
3930
|
-
"openssl-probe 0.1.6",
|
|
3931
|
-
"rustls-pemfile",
|
|
3932
|
-
"rustls-pki-types",
|
|
3933
|
-
"schannel",
|
|
3934
|
-
"security-framework 2.11.1",
|
|
3935
|
-
]
|
|
3936
|
-
|
|
3937
3977
|
[[package]]
|
|
3938
3978
|
name = "rustls-native-certs"
|
|
3939
3979
|
version = "0.8.3"
|
|
@@ -3946,15 +3986,6 @@ dependencies = [
|
|
|
3946
3986
|
"security-framework 3.5.1",
|
|
3947
3987
|
]
|
|
3948
3988
|
|
|
3949
|
-
[[package]]
|
|
3950
|
-
name = "rustls-pemfile"
|
|
3951
|
-
version = "2.2.0"
|
|
3952
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3953
|
-
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
|
|
3954
|
-
dependencies = [
|
|
3955
|
-
"rustls-pki-types",
|
|
3956
|
-
]
|
|
3957
|
-
|
|
3958
3989
|
[[package]]
|
|
3959
3990
|
name = "rustls-pki-types"
|
|
3960
3991
|
version = "1.14.0"
|
|
@@ -3966,21 +3997,37 @@ dependencies = [
|
|
|
3966
3997
|
]
|
|
3967
3998
|
|
|
3968
3999
|
[[package]]
|
|
3969
|
-
name = "rustls-
|
|
3970
|
-
version = "0.
|
|
4000
|
+
name = "rustls-platform-verifier"
|
|
4001
|
+
version = "0.7.0"
|
|
3971
4002
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3972
|
-
checksum = "
|
|
4003
|
+
checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
|
|
3973
4004
|
dependencies = [
|
|
3974
|
-
"
|
|
3975
|
-
"
|
|
3976
|
-
"
|
|
4005
|
+
"core-foundation 0.10.1",
|
|
4006
|
+
"core-foundation-sys",
|
|
4007
|
+
"jni 0.22.4",
|
|
4008
|
+
"log",
|
|
4009
|
+
"once_cell",
|
|
4010
|
+
"rustls",
|
|
4011
|
+
"rustls-native-certs",
|
|
4012
|
+
"rustls-platform-verifier-android",
|
|
4013
|
+
"rustls-webpki",
|
|
4014
|
+
"security-framework 3.5.1",
|
|
4015
|
+
"security-framework-sys",
|
|
4016
|
+
"webpki-root-certs",
|
|
4017
|
+
"windows-sys 0.61.2",
|
|
3977
4018
|
]
|
|
3978
4019
|
|
|
4020
|
+
[[package]]
|
|
4021
|
+
name = "rustls-platform-verifier-android"
|
|
4022
|
+
version = "0.1.1"
|
|
4023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4024
|
+
checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
|
|
4025
|
+
|
|
3979
4026
|
[[package]]
|
|
3980
4027
|
name = "rustls-webpki"
|
|
3981
|
-
version = "0.103.
|
|
4028
|
+
version = "0.103.13"
|
|
3982
4029
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3983
|
-
checksum = "
|
|
4030
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
3984
4031
|
dependencies = [
|
|
3985
4032
|
"aws-lc-rs",
|
|
3986
4033
|
"ring",
|
|
@@ -4053,9 +4100,9 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
|
4053
4100
|
|
|
4054
4101
|
[[package]]
|
|
4055
4102
|
name = "ryu"
|
|
4056
|
-
version = "1.0.
|
|
4103
|
+
version = "1.0.23"
|
|
4057
4104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4058
|
-
checksum = "
|
|
4105
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
4059
4106
|
|
|
4060
4107
|
[[package]]
|
|
4061
4108
|
name = "safe_arch"
|
|
@@ -4126,7 +4173,7 @@ version = "2.11.1"
|
|
|
4126
4173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4127
4174
|
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
|
4128
4175
|
dependencies = [
|
|
4129
|
-
"bitflags 2.
|
|
4176
|
+
"bitflags 2.11.1",
|
|
4130
4177
|
"core-foundation 0.9.4",
|
|
4131
4178
|
"core-foundation-sys",
|
|
4132
4179
|
"libc",
|
|
@@ -4139,7 +4186,7 @@ version = "3.5.1"
|
|
|
4139
4186
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4140
4187
|
checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
|
|
4141
4188
|
dependencies = [
|
|
4142
|
-
"bitflags 2.
|
|
4189
|
+
"bitflags 2.11.1",
|
|
4143
4190
|
"core-foundation 0.10.1",
|
|
4144
4191
|
"core-foundation-sys",
|
|
4145
4192
|
"libc",
|
|
@@ -4193,7 +4240,7 @@ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
|
4193
4240
|
dependencies = [
|
|
4194
4241
|
"proc-macro2",
|
|
4195
4242
|
"quote",
|
|
4196
|
-
"syn 2.0.
|
|
4243
|
+
"syn 2.0.117",
|
|
4197
4244
|
]
|
|
4198
4245
|
|
|
4199
4246
|
[[package]]
|
|
@@ -4228,7 +4275,7 @@ checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
|
|
|
4228
4275
|
dependencies = [
|
|
4229
4276
|
"proc-macro2",
|
|
4230
4277
|
"quote",
|
|
4231
|
-
"syn 2.0.
|
|
4278
|
+
"syn 2.0.117",
|
|
4232
4279
|
]
|
|
4233
4280
|
|
|
4234
4281
|
[[package]]
|
|
@@ -4289,7 +4336,7 @@ dependencies = [
|
|
|
4289
4336
|
"darling 0.23.0",
|
|
4290
4337
|
"proc-macro2",
|
|
4291
4338
|
"quote",
|
|
4292
|
-
"syn 2.0.
|
|
4339
|
+
"syn 2.0.117",
|
|
4293
4340
|
]
|
|
4294
4341
|
|
|
4295
4342
|
[[package]]
|
|
@@ -4374,6 +4421,22 @@ version = "0.3.8"
|
|
|
4374
4421
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4375
4422
|
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
|
|
4376
4423
|
|
|
4424
|
+
[[package]]
|
|
4425
|
+
name = "simd_cesu8"
|
|
4426
|
+
version = "1.1.1"
|
|
4427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4428
|
+
checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
|
|
4429
|
+
dependencies = [
|
|
4430
|
+
"rustc_version",
|
|
4431
|
+
"simdutf8",
|
|
4432
|
+
]
|
|
4433
|
+
|
|
4434
|
+
[[package]]
|
|
4435
|
+
name = "simdutf8"
|
|
4436
|
+
version = "0.1.5"
|
|
4437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4438
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
4439
|
+
|
|
4377
4440
|
[[package]]
|
|
4378
4441
|
name = "similar"
|
|
4379
4442
|
version = "2.7.0"
|
|
@@ -4422,22 +4485,12 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
|
4422
4485
|
|
|
4423
4486
|
[[package]]
|
|
4424
4487
|
name = "socket2"
|
|
4425
|
-
version = "0.
|
|
4426
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4427
|
-
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
|
4428
|
-
dependencies = [
|
|
4429
|
-
"libc",
|
|
4430
|
-
"windows-sys 0.52.0",
|
|
4431
|
-
]
|
|
4432
|
-
|
|
4433
|
-
[[package]]
|
|
4434
|
-
name = "socket2"
|
|
4435
|
-
version = "0.6.2"
|
|
4488
|
+
version = "0.6.3"
|
|
4436
4489
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4437
|
-
checksum = "
|
|
4490
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
4438
4491
|
dependencies = [
|
|
4439
4492
|
"libc",
|
|
4440
|
-
"windows-sys 0.
|
|
4493
|
+
"windows-sys 0.61.2",
|
|
4441
4494
|
]
|
|
4442
4495
|
|
|
4443
4496
|
[[package]]
|
|
@@ -4512,7 +4565,7 @@ dependencies = [
|
|
|
4512
4565
|
"proc-macro2",
|
|
4513
4566
|
"quote",
|
|
4514
4567
|
"rustversion",
|
|
4515
|
-
"syn 2.0.
|
|
4568
|
+
"syn 2.0.117",
|
|
4516
4569
|
]
|
|
4517
4570
|
|
|
4518
4571
|
[[package]]
|
|
@@ -4534,9 +4587,9 @@ dependencies = [
|
|
|
4534
4587
|
|
|
4535
4588
|
[[package]]
|
|
4536
4589
|
name = "syn"
|
|
4537
|
-
version = "2.0.
|
|
4590
|
+
version = "2.0.117"
|
|
4538
4591
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4539
|
-
checksum = "
|
|
4592
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
4540
4593
|
dependencies = [
|
|
4541
4594
|
"proc-macro2",
|
|
4542
4595
|
"quote",
|
|
@@ -4560,7 +4613,7 @@ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
|
4560
4613
|
dependencies = [
|
|
4561
4614
|
"proc-macro2",
|
|
4562
4615
|
"quote",
|
|
4563
|
-
"syn 2.0.
|
|
4616
|
+
"syn 2.0.117",
|
|
4564
4617
|
]
|
|
4565
4618
|
|
|
4566
4619
|
[[package]]
|
|
@@ -4569,7 +4622,7 @@ version = "0.7.0"
|
|
|
4569
4622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4570
4623
|
checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
|
|
4571
4624
|
dependencies = [
|
|
4572
|
-
"bitflags 2.
|
|
4625
|
+
"bitflags 2.11.1",
|
|
4573
4626
|
"core-foundation 0.9.4",
|
|
4574
4627
|
"system-configuration-sys",
|
|
4575
4628
|
]
|
|
@@ -4640,7 +4693,7 @@ dependencies = [
|
|
|
4640
4693
|
"cfg-if",
|
|
4641
4694
|
"proc-macro2",
|
|
4642
4695
|
"quote",
|
|
4643
|
-
"syn 2.0.
|
|
4696
|
+
"syn 2.0.117",
|
|
4644
4697
|
]
|
|
4645
4698
|
|
|
4646
4699
|
[[package]]
|
|
@@ -4651,7 +4704,7 @@ checksum = "5c89e72a01ed4c579669add59014b9a524d609c0c88c6a585ce37485879f6ffb"
|
|
|
4651
4704
|
dependencies = [
|
|
4652
4705
|
"proc-macro2",
|
|
4653
4706
|
"quote",
|
|
4654
|
-
"syn 2.0.
|
|
4707
|
+
"syn 2.0.117",
|
|
4655
4708
|
"test-case-core",
|
|
4656
4709
|
]
|
|
4657
4710
|
|
|
@@ -4681,7 +4734,7 @@ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
|
4681
4734
|
dependencies = [
|
|
4682
4735
|
"proc-macro2",
|
|
4683
4736
|
"quote",
|
|
4684
|
-
"syn 2.0.
|
|
4737
|
+
"syn 2.0.117",
|
|
4685
4738
|
]
|
|
4686
4739
|
|
|
4687
4740
|
[[package]]
|
|
@@ -4692,7 +4745,7 @@ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
|
4692
4745
|
dependencies = [
|
|
4693
4746
|
"proc-macro2",
|
|
4694
4747
|
"quote",
|
|
4695
|
-
"syn 2.0.
|
|
4748
|
+
"syn 2.0.117",
|
|
4696
4749
|
]
|
|
4697
4750
|
|
|
4698
4751
|
[[package]]
|
|
@@ -4771,9 +4824,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
4771
4824
|
|
|
4772
4825
|
[[package]]
|
|
4773
4826
|
name = "tokio"
|
|
4774
|
-
version = "1.
|
|
4827
|
+
version = "1.52.3"
|
|
4775
4828
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4776
|
-
checksum = "
|
|
4829
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
4777
4830
|
dependencies = [
|
|
4778
4831
|
"bytes",
|
|
4779
4832
|
"libc",
|
|
@@ -4781,20 +4834,20 @@ dependencies = [
|
|
|
4781
4834
|
"parking_lot",
|
|
4782
4835
|
"pin-project-lite",
|
|
4783
4836
|
"signal-hook-registry",
|
|
4784
|
-
"socket2
|
|
4837
|
+
"socket2",
|
|
4785
4838
|
"tokio-macros",
|
|
4786
4839
|
"windows-sys 0.61.2",
|
|
4787
4840
|
]
|
|
4788
4841
|
|
|
4789
4842
|
[[package]]
|
|
4790
4843
|
name = "tokio-macros"
|
|
4791
|
-
version = "2.
|
|
4844
|
+
version = "2.7.0"
|
|
4792
4845
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4793
|
-
checksum = "
|
|
4846
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
4794
4847
|
dependencies = [
|
|
4795
4848
|
"proc-macro2",
|
|
4796
4849
|
"quote",
|
|
4797
|
-
"syn 2.0.
|
|
4850
|
+
"syn 2.0.117",
|
|
4798
4851
|
]
|
|
4799
4852
|
|
|
4800
4853
|
[[package]]
|
|
@@ -4807,24 +4860,13 @@ dependencies = [
|
|
|
4807
4860
|
"tokio",
|
|
4808
4861
|
]
|
|
4809
4862
|
|
|
4810
|
-
[[package]]
|
|
4811
|
-
name = "tokio-rustls"
|
|
4812
|
-
version = "0.25.0"
|
|
4813
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4814
|
-
checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
|
|
4815
|
-
dependencies = [
|
|
4816
|
-
"rustls 0.22.4",
|
|
4817
|
-
"rustls-pki-types",
|
|
4818
|
-
"tokio",
|
|
4819
|
-
]
|
|
4820
|
-
|
|
4821
4863
|
[[package]]
|
|
4822
4864
|
name = "tokio-rustls"
|
|
4823
4865
|
version = "0.26.4"
|
|
4824
4866
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4825
4867
|
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
4826
4868
|
dependencies = [
|
|
4827
|
-
"rustls
|
|
4869
|
+
"rustls",
|
|
4828
4870
|
"tokio",
|
|
4829
4871
|
]
|
|
4830
4872
|
|
|
@@ -4837,6 +4879,7 @@ dependencies = [
|
|
|
4837
4879
|
"futures-core",
|
|
4838
4880
|
"pin-project-lite",
|
|
4839
4881
|
"tokio",
|
|
4882
|
+
"tokio-util",
|
|
4840
4883
|
]
|
|
4841
4884
|
|
|
4842
4885
|
[[package]]
|
|
@@ -4972,29 +5015,29 @@ checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
|
|
|
4972
5015
|
|
|
4973
5016
|
[[package]]
|
|
4974
5017
|
name = "tonic"
|
|
4975
|
-
version = "0.
|
|
5018
|
+
version = "0.14.6"
|
|
4976
5019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4977
|
-
checksum = "
|
|
5020
|
+
checksum = "ac2a5518c70fa84342385732db33fb3f44bc4cc748936eb5833d2df34d6445ef"
|
|
4978
5021
|
dependencies = [
|
|
4979
5022
|
"async-trait",
|
|
4980
5023
|
"axum",
|
|
4981
5024
|
"base64 0.22.1",
|
|
4982
5025
|
"bytes",
|
|
4983
5026
|
"flate2",
|
|
4984
|
-
"h2
|
|
4985
|
-
"http
|
|
4986
|
-
"http-body
|
|
5027
|
+
"h2",
|
|
5028
|
+
"http",
|
|
5029
|
+
"http-body",
|
|
4987
5030
|
"http-body-util",
|
|
4988
|
-
"hyper
|
|
5031
|
+
"hyper",
|
|
4989
5032
|
"hyper-timeout",
|
|
4990
5033
|
"hyper-util",
|
|
4991
5034
|
"percent-encoding",
|
|
4992
5035
|
"pin-project",
|
|
4993
|
-
"
|
|
4994
|
-
"
|
|
4995
|
-
"
|
|
5036
|
+
"rustls-native-certs",
|
|
5037
|
+
"socket2",
|
|
5038
|
+
"sync_wrapper",
|
|
4996
5039
|
"tokio",
|
|
4997
|
-
"tokio-rustls
|
|
5040
|
+
"tokio-rustls",
|
|
4998
5041
|
"tokio-stream",
|
|
4999
5042
|
"tower",
|
|
5000
5043
|
"tower-layer",
|
|
@@ -5004,34 +5047,54 @@ dependencies = [
|
|
|
5004
5047
|
|
|
5005
5048
|
[[package]]
|
|
5006
5049
|
name = "tonic-build"
|
|
5007
|
-
version = "0.
|
|
5050
|
+
version = "0.14.6"
|
|
5008
5051
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5009
|
-
checksum = "
|
|
5052
|
+
checksum = "c68f61875ac5293cf72e6c8cf0158086428c82c37229e98c840878f1706b0322"
|
|
5010
5053
|
dependencies = [
|
|
5011
5054
|
"prettyplease",
|
|
5012
5055
|
"proc-macro2",
|
|
5013
|
-
"prost-build",
|
|
5014
|
-
"prost-types",
|
|
5015
5056
|
"quote",
|
|
5016
|
-
"syn 2.0.
|
|
5057
|
+
"syn 2.0.117",
|
|
5017
5058
|
]
|
|
5018
5059
|
|
|
5019
5060
|
[[package]]
|
|
5020
|
-
name = "tonic-
|
|
5021
|
-
version = "0.
|
|
5061
|
+
name = "tonic-health"
|
|
5062
|
+
version = "0.14.6"
|
|
5022
5063
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5023
|
-
checksum = "
|
|
5064
|
+
checksum = "fcfab99db777fba2802f0dfa861d1628d1ae916fb199d29819941f139ae85082"
|
|
5024
5065
|
dependencies = [
|
|
5025
|
-
"
|
|
5026
|
-
"
|
|
5027
|
-
"http 1.4.0",
|
|
5028
|
-
"http-body 1.0.1",
|
|
5029
|
-
"pin-project",
|
|
5066
|
+
"prost",
|
|
5067
|
+
"tokio",
|
|
5030
5068
|
"tokio-stream",
|
|
5031
5069
|
"tonic",
|
|
5032
|
-
"
|
|
5033
|
-
|
|
5034
|
-
|
|
5070
|
+
"tonic-prost",
|
|
5071
|
+
]
|
|
5072
|
+
|
|
5073
|
+
[[package]]
|
|
5074
|
+
name = "tonic-prost"
|
|
5075
|
+
version = "0.14.6"
|
|
5076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5077
|
+
checksum = "50849f68853be452acf590cde0b146665b8d507b3b8af17261df47e02c209ea0"
|
|
5078
|
+
dependencies = [
|
|
5079
|
+
"bytes",
|
|
5080
|
+
"prost",
|
|
5081
|
+
"tonic",
|
|
5082
|
+
]
|
|
5083
|
+
|
|
5084
|
+
[[package]]
|
|
5085
|
+
name = "tonic-prost-build"
|
|
5086
|
+
version = "0.14.6"
|
|
5087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5088
|
+
checksum = "654e5643eff75d7f8c99197ce1440ed19a3474eada74c12bbac488b2cafdae27"
|
|
5089
|
+
dependencies = [
|
|
5090
|
+
"prettyplease",
|
|
5091
|
+
"proc-macro2",
|
|
5092
|
+
"prost-build",
|
|
5093
|
+
"prost-types",
|
|
5094
|
+
"quote",
|
|
5095
|
+
"syn 2.0.117",
|
|
5096
|
+
"tempfile",
|
|
5097
|
+
"tonic-build",
|
|
5035
5098
|
]
|
|
5036
5099
|
|
|
5037
5100
|
[[package]]
|
|
@@ -5059,10 +5122,10 @@ version = "0.5.2"
|
|
|
5059
5122
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5060
5123
|
checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5"
|
|
5061
5124
|
dependencies = [
|
|
5062
|
-
"bitflags 2.
|
|
5125
|
+
"bitflags 2.11.1",
|
|
5063
5126
|
"bytes",
|
|
5064
|
-
"http
|
|
5065
|
-
"http-body
|
|
5127
|
+
"http",
|
|
5128
|
+
"http-body",
|
|
5066
5129
|
"http-body-util",
|
|
5067
5130
|
"pin-project-lite",
|
|
5068
5131
|
"tower-layer",
|
|
@@ -5076,16 +5139,17 @@ version = "0.6.8"
|
|
|
5076
5139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5077
5140
|
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
5078
5141
|
dependencies = [
|
|
5079
|
-
"bitflags 2.
|
|
5142
|
+
"bitflags 2.11.1",
|
|
5080
5143
|
"bytes",
|
|
5081
5144
|
"futures-util",
|
|
5082
|
-
"http
|
|
5083
|
-
"http-body
|
|
5145
|
+
"http",
|
|
5146
|
+
"http-body",
|
|
5084
5147
|
"iri-string",
|
|
5085
5148
|
"pin-project-lite",
|
|
5086
5149
|
"tower",
|
|
5087
5150
|
"tower-layer",
|
|
5088
5151
|
"tower-service",
|
|
5152
|
+
"tracing",
|
|
5089
5153
|
]
|
|
5090
5154
|
|
|
5091
5155
|
[[package]]
|
|
@@ -5120,7 +5184,7 @@ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
|
5120
5184
|
dependencies = [
|
|
5121
5185
|
"proc-macro2",
|
|
5122
5186
|
"quote",
|
|
5123
|
-
"syn 2.0.
|
|
5187
|
+
"syn 2.0.117",
|
|
5124
5188
|
]
|
|
5125
5189
|
|
|
5126
5190
|
[[package]]
|
|
@@ -5146,14 +5210,12 @@ dependencies = [
|
|
|
5146
5210
|
|
|
5147
5211
|
[[package]]
|
|
5148
5212
|
name = "tracing-opentelemetry"
|
|
5149
|
-
version = "0.
|
|
5213
|
+
version = "0.32.1"
|
|
5150
5214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5151
|
-
checksum = "
|
|
5215
|
+
checksum = "1ac28f2d093c6c477eaa76b23525478f38de514fa9aeb1285738d4b97a9552fc"
|
|
5152
5216
|
dependencies = [
|
|
5153
5217
|
"js-sys",
|
|
5154
|
-
"once_cell",
|
|
5155
5218
|
"opentelemetry",
|
|
5156
|
-
"opentelemetry_sdk",
|
|
5157
5219
|
"smallvec",
|
|
5158
5220
|
"tracing",
|
|
5159
5221
|
"tracing-core",
|
|
@@ -5201,9 +5263,9 @@ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
|
5201
5263
|
|
|
5202
5264
|
[[package]]
|
|
5203
5265
|
name = "typenum"
|
|
5204
|
-
version = "1.
|
|
5266
|
+
version = "1.20.0"
|
|
5205
5267
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5206
|
-
checksum = "
|
|
5268
|
+
checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
|
|
5207
5269
|
|
|
5208
5270
|
[[package]]
|
|
5209
5271
|
name = "ucd-trie"
|
|
@@ -5211,6 +5273,12 @@ version = "0.1.7"
|
|
|
5211
5273
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5212
5274
|
checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
|
|
5213
5275
|
|
|
5276
|
+
[[package]]
|
|
5277
|
+
name = "unarray"
|
|
5278
|
+
version = "0.1.4"
|
|
5279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5280
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
5281
|
+
|
|
5214
5282
|
[[package]]
|
|
5215
5283
|
name = "uncased"
|
|
5216
5284
|
version = "0.9.10"
|
|
@@ -5280,9 +5348,9 @@ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
|
|
|
5280
5348
|
|
|
5281
5349
|
[[package]]
|
|
5282
5350
|
name = "unicode-ident"
|
|
5283
|
-
version = "1.0.
|
|
5351
|
+
version = "1.0.24"
|
|
5284
5352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5285
|
-
checksum = "
|
|
5353
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
5286
5354
|
|
|
5287
5355
|
[[package]]
|
|
5288
5356
|
name = "unicode-width"
|
|
@@ -5417,16 +5485,18 @@ dependencies = [
|
|
|
5417
5485
|
|
|
5418
5486
|
[[package]]
|
|
5419
5487
|
name = "warp"
|
|
5420
|
-
version = "0.3
|
|
5488
|
+
version = "0.4.3"
|
|
5421
5489
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5422
|
-
checksum = "
|
|
5490
|
+
checksum = "c0a808122a8a77eecdabaefd88ddb1913c4be5ea1465399f63ba64c7aa705fea"
|
|
5423
5491
|
dependencies = [
|
|
5424
5492
|
"bytes",
|
|
5425
|
-
"futures-channel",
|
|
5426
5493
|
"futures-util",
|
|
5427
|
-
"headers
|
|
5428
|
-
"http
|
|
5429
|
-
"
|
|
5494
|
+
"headers",
|
|
5495
|
+
"http",
|
|
5496
|
+
"http-body",
|
|
5497
|
+
"http-body-util",
|
|
5498
|
+
"hyper",
|
|
5499
|
+
"hyper-util",
|
|
5430
5500
|
"log",
|
|
5431
5501
|
"mime",
|
|
5432
5502
|
"mime_guess",
|
|
@@ -5503,7 +5573,7 @@ dependencies = [
|
|
|
5503
5573
|
"bumpalo",
|
|
5504
5574
|
"proc-macro2",
|
|
5505
5575
|
"quote",
|
|
5506
|
-
"syn 2.0.
|
|
5576
|
+
"syn 2.0.117",
|
|
5507
5577
|
"wasm-bindgen-shared",
|
|
5508
5578
|
]
|
|
5509
5579
|
|
|
@@ -5556,7 +5626,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
5556
5626
|
checksum = "00f1243ef785213e3a32fa0396093424a3a6ea566f9948497e5a2309261a4c97"
|
|
5557
5627
|
dependencies = [
|
|
5558
5628
|
"core-foundation 0.10.1",
|
|
5559
|
-
"jni",
|
|
5629
|
+
"jni 0.21.1",
|
|
5560
5630
|
"log",
|
|
5561
5631
|
"ndk-context",
|
|
5562
5632
|
"objc2",
|
|
@@ -5566,13 +5636,12 @@ dependencies = [
|
|
|
5566
5636
|
]
|
|
5567
5637
|
|
|
5568
5638
|
[[package]]
|
|
5569
|
-
name = "webpki"
|
|
5570
|
-
version = "0.
|
|
5639
|
+
name = "webpki-root-certs"
|
|
5640
|
+
version = "1.0.7"
|
|
5571
5641
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5572
|
-
checksum = "
|
|
5642
|
+
checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
|
|
5573
5643
|
dependencies = [
|
|
5574
|
-
"
|
|
5575
|
-
"untrusted 0.9.0",
|
|
5644
|
+
"rustls-pki-types",
|
|
5576
5645
|
]
|
|
5577
5646
|
|
|
5578
5647
|
[[package]]
|
|
@@ -5624,7 +5693,7 @@ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
|
5624
5693
|
dependencies = [
|
|
5625
5694
|
"proc-macro2",
|
|
5626
5695
|
"quote",
|
|
5627
|
-
"syn 2.0.
|
|
5696
|
+
"syn 2.0.117",
|
|
5628
5697
|
]
|
|
5629
5698
|
|
|
5630
5699
|
[[package]]
|
|
@@ -5635,7 +5704,7 @@ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
|
5635
5704
|
dependencies = [
|
|
5636
5705
|
"proc-macro2",
|
|
5637
5706
|
"quote",
|
|
5638
|
-
"syn 2.0.
|
|
5707
|
+
"syn 2.0.117",
|
|
5639
5708
|
]
|
|
5640
5709
|
|
|
5641
5710
|
[[package]]
|
|
@@ -5709,15 +5778,6 @@ dependencies = [
|
|
|
5709
5778
|
"windows-targets 0.52.6",
|
|
5710
5779
|
]
|
|
5711
5780
|
|
|
5712
|
-
[[package]]
|
|
5713
|
-
name = "windows-sys"
|
|
5714
|
-
version = "0.60.2"
|
|
5715
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5716
|
-
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
5717
|
-
dependencies = [
|
|
5718
|
-
"windows-targets 0.53.5",
|
|
5719
|
-
]
|
|
5720
|
-
|
|
5721
5781
|
[[package]]
|
|
5722
5782
|
name = "windows-sys"
|
|
5723
5783
|
version = "0.61.2"
|
|
@@ -5766,30 +5826,13 @@ dependencies = [
|
|
|
5766
5826
|
"windows_aarch64_gnullvm 0.52.6",
|
|
5767
5827
|
"windows_aarch64_msvc 0.52.6",
|
|
5768
5828
|
"windows_i686_gnu 0.52.6",
|
|
5769
|
-
"windows_i686_gnullvm
|
|
5829
|
+
"windows_i686_gnullvm",
|
|
5770
5830
|
"windows_i686_msvc 0.52.6",
|
|
5771
5831
|
"windows_x86_64_gnu 0.52.6",
|
|
5772
5832
|
"windows_x86_64_gnullvm 0.52.6",
|
|
5773
5833
|
"windows_x86_64_msvc 0.52.6",
|
|
5774
5834
|
]
|
|
5775
5835
|
|
|
5776
|
-
[[package]]
|
|
5777
|
-
name = "windows-targets"
|
|
5778
|
-
version = "0.53.5"
|
|
5779
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5780
|
-
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
5781
|
-
dependencies = [
|
|
5782
|
-
"windows-link",
|
|
5783
|
-
"windows_aarch64_gnullvm 0.53.1",
|
|
5784
|
-
"windows_aarch64_msvc 0.53.1",
|
|
5785
|
-
"windows_i686_gnu 0.53.1",
|
|
5786
|
-
"windows_i686_gnullvm 0.53.1",
|
|
5787
|
-
"windows_i686_msvc 0.53.1",
|
|
5788
|
-
"windows_x86_64_gnu 0.53.1",
|
|
5789
|
-
"windows_x86_64_gnullvm 0.53.1",
|
|
5790
|
-
"windows_x86_64_msvc 0.53.1",
|
|
5791
|
-
]
|
|
5792
|
-
|
|
5793
5836
|
[[package]]
|
|
5794
5837
|
name = "windows_aarch64_gnullvm"
|
|
5795
5838
|
version = "0.42.2"
|
|
@@ -5808,12 +5851,6 @@ version = "0.52.6"
|
|
|
5808
5851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5809
5852
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
5810
5853
|
|
|
5811
|
-
[[package]]
|
|
5812
|
-
name = "windows_aarch64_gnullvm"
|
|
5813
|
-
version = "0.53.1"
|
|
5814
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5815
|
-
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
5816
|
-
|
|
5817
5854
|
[[package]]
|
|
5818
5855
|
name = "windows_aarch64_msvc"
|
|
5819
5856
|
version = "0.42.2"
|
|
@@ -5832,12 +5869,6 @@ version = "0.52.6"
|
|
|
5832
5869
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5833
5870
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
5834
5871
|
|
|
5835
|
-
[[package]]
|
|
5836
|
-
name = "windows_aarch64_msvc"
|
|
5837
|
-
version = "0.53.1"
|
|
5838
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5839
|
-
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
5840
|
-
|
|
5841
5872
|
[[package]]
|
|
5842
5873
|
name = "windows_i686_gnu"
|
|
5843
5874
|
version = "0.42.2"
|
|
@@ -5856,24 +5887,12 @@ version = "0.52.6"
|
|
|
5856
5887
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5857
5888
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
5858
5889
|
|
|
5859
|
-
[[package]]
|
|
5860
|
-
name = "windows_i686_gnu"
|
|
5861
|
-
version = "0.53.1"
|
|
5862
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5863
|
-
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
5864
|
-
|
|
5865
5890
|
[[package]]
|
|
5866
5891
|
name = "windows_i686_gnullvm"
|
|
5867
5892
|
version = "0.52.6"
|
|
5868
5893
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5869
5894
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
5870
5895
|
|
|
5871
|
-
[[package]]
|
|
5872
|
-
name = "windows_i686_gnullvm"
|
|
5873
|
-
version = "0.53.1"
|
|
5874
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5875
|
-
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
5876
|
-
|
|
5877
5896
|
[[package]]
|
|
5878
5897
|
name = "windows_i686_msvc"
|
|
5879
5898
|
version = "0.42.2"
|
|
@@ -5892,12 +5911,6 @@ version = "0.52.6"
|
|
|
5892
5911
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5893
5912
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
5894
5913
|
|
|
5895
|
-
[[package]]
|
|
5896
|
-
name = "windows_i686_msvc"
|
|
5897
|
-
version = "0.53.1"
|
|
5898
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5899
|
-
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
5900
|
-
|
|
5901
5914
|
[[package]]
|
|
5902
5915
|
name = "windows_x86_64_gnu"
|
|
5903
5916
|
version = "0.42.2"
|
|
@@ -5916,12 +5929,6 @@ version = "0.52.6"
|
|
|
5916
5929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5917
5930
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
5918
5931
|
|
|
5919
|
-
[[package]]
|
|
5920
|
-
name = "windows_x86_64_gnu"
|
|
5921
|
-
version = "0.53.1"
|
|
5922
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5923
|
-
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
5924
|
-
|
|
5925
5932
|
[[package]]
|
|
5926
5933
|
name = "windows_x86_64_gnullvm"
|
|
5927
5934
|
version = "0.42.2"
|
|
@@ -5940,12 +5947,6 @@ version = "0.52.6"
|
|
|
5940
5947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5941
5948
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
5942
5949
|
|
|
5943
|
-
[[package]]
|
|
5944
|
-
name = "windows_x86_64_gnullvm"
|
|
5945
|
-
version = "0.53.1"
|
|
5946
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5947
|
-
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
5948
|
-
|
|
5949
5950
|
[[package]]
|
|
5950
5951
|
name = "windows_x86_64_msvc"
|
|
5951
5952
|
version = "0.42.2"
|
|
@@ -5964,12 +5965,6 @@ version = "0.52.6"
|
|
|
5964
5965
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5965
5966
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
5966
5967
|
|
|
5967
|
-
[[package]]
|
|
5968
|
-
name = "windows_x86_64_msvc"
|
|
5969
|
-
version = "0.53.1"
|
|
5970
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5971
|
-
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
5972
|
-
|
|
5973
5968
|
[[package]]
|
|
5974
5969
|
name = "winnow"
|
|
5975
5970
|
version = "0.5.40"
|
|
@@ -6025,7 +6020,7 @@ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
|
6025
6020
|
dependencies = [
|
|
6026
6021
|
"proc-macro2",
|
|
6027
6022
|
"quote",
|
|
6028
|
-
"syn 2.0.
|
|
6023
|
+
"syn 2.0.117",
|
|
6029
6024
|
"synstructure",
|
|
6030
6025
|
]
|
|
6031
6026
|
|
|
@@ -6046,7 +6041,7 @@ checksum = "8a616990af1a287837c4fe6596ad77ef57948f787e46ce28e166facc0cc1cb75"
|
|
|
6046
6041
|
dependencies = [
|
|
6047
6042
|
"proc-macro2",
|
|
6048
6043
|
"quote",
|
|
6049
|
-
"syn 2.0.
|
|
6044
|
+
"syn 2.0.117",
|
|
6050
6045
|
]
|
|
6051
6046
|
|
|
6052
6047
|
[[package]]
|
|
@@ -6066,7 +6061,7 @@ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
|
6066
6061
|
dependencies = [
|
|
6067
6062
|
"proc-macro2",
|
|
6068
6063
|
"quote",
|
|
6069
|
-
"syn 2.0.
|
|
6064
|
+
"syn 2.0.117",
|
|
6070
6065
|
"synstructure",
|
|
6071
6066
|
]
|
|
6072
6067
|
|
|
@@ -6116,14 +6111,14 @@ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
|
6116
6111
|
dependencies = [
|
|
6117
6112
|
"proc-macro2",
|
|
6118
6113
|
"quote",
|
|
6119
|
-
"syn 2.0.
|
|
6114
|
+
"syn 2.0.117",
|
|
6120
6115
|
]
|
|
6121
6116
|
|
|
6122
6117
|
[[package]]
|
|
6123
6118
|
name = "zmij"
|
|
6124
|
-
version = "1.0.
|
|
6119
|
+
version = "1.0.21"
|
|
6125
6120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6126
|
-
checksum = "
|
|
6121
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
6127
6122
|
|
|
6128
6123
|
[[package]]
|
|
6129
6124
|
name = "zmq"
|