qcs-sdk-python 0.26.4rc0__tar.gz → 0.27.2rc0__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.4rc0 → qcs_sdk_python-0.27.2rc0}/Cargo.lock +378 -295
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/Cargo.toml +19 -21
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/PKG-INFO +4 -4
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/CHANGELOG.md +13 -5
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/Cargo.toml +2 -2
- qcs_sdk_python-0.27.2rc0/crates/lib/Makefile.toml +208 -0
- qcs_sdk_python-0.27.2rc0/crates/lib/python/stubtest-allowlist +15 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/scripts/check-py-api.sh +43 -12
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/scripts/lint-bindings.py +2 -1
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/client.rs +6 -1
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/compiler/python.rs +9 -5
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/compiler/quilc.rs +45 -10
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/diagnostics/python.rs +8 -2
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/executable.rs +6 -1
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/execution_data.rs +8 -2
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/python/errors.rs +20 -20
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/python/executable.rs +13 -3
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/python/execution_data.rs +5 -5
- qcs_sdk_python-0.27.2rc0/crates/lib/src/python/mod.rs +227 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qpu/api/mod.rs +13 -5
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qpu/api/python.rs +13 -8
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qpu/experimental/random.rs +12 -4
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qpu/isa/python.rs +64 -11
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qpu/python.rs +1 -1
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qpu/result_data.rs +14 -3
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qpu/translation/mod.rs +4 -1
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qpu/translation/python.rs +18 -7
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qvm/http.rs +24 -6
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qvm/mod.rs +8 -2
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qvm/python.rs +13 -8
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/register_data.rs +1 -1
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests_py/compiler/test_quilc.py +6 -10
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests_py/conftest.py +13 -13
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests_py/execution_data/test_execution_data.py +10 -6
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests_py/qpu/test_api.py +12 -3
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests_py/qpu/test_isa.py +2 -1
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests_py/qpu/test_qpu.py +5 -1
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests_py/test_client.py +1 -3
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests_py/test_diagnostics.py +1 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests_py/test_executable.py +7 -6
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests_py/test_tracing_subscriber.py +9 -17
- qcs_sdk_python-0.27.2rc0/crates/lib/uv.lock +1158 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/pyproject.toml +55 -40
- qcs_sdk_python-0.27.2rc0/python/qcs_sdk/__init__.py +56 -0
- {qcs_sdk_python-0.26.4rc0/python/qcs_sdk → qcs_sdk_python-0.27.2rc0/python/qcs_sdk/_qcs_sdk}/__init__.pyi +166 -71
- qcs_sdk_python-0.26.4rc0/python/qcs_sdk/client.pyi → qcs_sdk_python-0.27.2rc0/python/qcs_sdk/_qcs_sdk/client/__init__.pyi +57 -20
- {qcs_sdk_python-0.26.4rc0/python/qcs_sdk → qcs_sdk_python-0.27.2rc0/python/qcs_sdk/_qcs_sdk}/compiler/__init__.pyi +4 -1
- qcs_sdk_python-0.26.4rc0/python/qcs_sdk/compiler/quilc.pyi → qcs_sdk_python-0.27.2rc0/python/qcs_sdk/_qcs_sdk/compiler/quilc/__init__.pyi +114 -45
- qcs_sdk_python-0.26.4rc0/python/qcs_sdk/diagnostics.pyi → qcs_sdk_python-0.27.2rc0/python/qcs_sdk/_qcs_sdk/diagnostics/__init__.pyi +13 -9
- {qcs_sdk_python-0.26.4rc0/python/qcs_sdk → qcs_sdk_python-0.27.2rc0/python/qcs_sdk/_qcs_sdk}/qpu/__init__.pyi +76 -37
- qcs_sdk_python-0.26.4rc0/python/qcs_sdk/qpu/api.pyi → qcs_sdk_python-0.27.2rc0/python/qcs_sdk/_qcs_sdk/qpu/api/__init__.pyi +175 -76
- {qcs_sdk_python-0.26.4rc0/python/qcs_sdk → qcs_sdk_python-0.27.2rc0/python/qcs_sdk/_qcs_sdk}/qpu/experimental/__init__.pyi +4 -1
- qcs_sdk_python-0.26.4rc0/python/qcs_sdk/qpu/experimental/random.pyi → qcs_sdk_python-0.27.2rc0/python/qcs_sdk/_qcs_sdk/qpu/experimental/random/__init__.pyi +28 -17
- qcs_sdk_python-0.26.4rc0/python/qcs_sdk/qpu/isa.pyi → qcs_sdk_python-0.27.2rc0/python/qcs_sdk/_qcs_sdk/qpu/isa/__init__.pyi +107 -63
- qcs_sdk_python-0.26.4rc0/python/qcs_sdk/qpu/translation.pyi → qcs_sdk_python-0.27.2rc0/python/qcs_sdk/_qcs_sdk/qpu/translation/__init__.pyi +71 -27
- {qcs_sdk_python-0.26.4rc0/python/qcs_sdk → qcs_sdk_python-0.27.2rc0/python/qcs_sdk/_qcs_sdk}/qvm/__init__.pyi +52 -22
- qcs_sdk_python-0.26.4rc0/python/qcs_sdk/qvm/api.pyi → qcs_sdk_python-0.27.2rc0/python/qcs_sdk/_qcs_sdk/qvm/api/__init__.pyi +92 -35
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/python/qcs_sdk/_tracing_subscriber/common/__init__.py +0 -1
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/python/qcs_sdk/_tracing_subscriber/common/__init__.pyi +2 -4
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/python/qcs_sdk/_tracing_subscriber/layers/__init__.py +0 -1
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/python/qcs_sdk/_tracing_subscriber/layers/__init__.pyi +7 -7
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/python/qcs_sdk/_tracing_subscriber/layers/file/__init__.py +0 -2
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/python/qcs_sdk/_tracing_subscriber/layers/file/__init__.pyi +0 -1
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/python/qcs_sdk/_tracing_subscriber/layers/otel_otlp/__init__.py +0 -1
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/python/qcs_sdk/_tracing_subscriber/layers/otel_otlp/__init__.pyi +2 -4
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/python/qcs_sdk/_tracing_subscriber/layers/otel_otlp_file/__init__.py +0 -1
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/python/qcs_sdk/_tracing_subscriber/layers/otel_otlp_file/__init__.pyi +6 -3
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/python/qcs_sdk/_tracing_subscriber/subscriber/__init__.py +0 -1
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/python/qcs_sdk/_tracing_subscriber/subscriber/__init__.pyi +0 -1
- qcs_sdk_python-0.27.2rc0/python/qcs_sdk/client/__init__.py +32 -0
- qcs_sdk_python-0.27.2rc0/python/qcs_sdk/compiler/__init__.py +8 -0
- qcs_sdk_python-0.27.2rc0/python/qcs_sdk/compiler/quilc/__init__.py +50 -0
- qcs_sdk_python-0.27.2rc0/python/qcs_sdk/diagnostics/__init__.py +9 -0
- qcs_sdk_python-0.27.2rc0/python/qcs_sdk/qpu/__init__.py +30 -0
- qcs_sdk_python-0.27.2rc0/python/qcs_sdk/qpu/api/__init__.py +50 -0
- qcs_sdk_python-0.27.2rc0/python/qcs_sdk/qpu/experimental/__init__.py +8 -0
- qcs_sdk_python-0.27.2rc0/python/qcs_sdk/qpu/experimental/random/__init__.py +18 -0
- qcs_sdk_python-0.27.2rc0/python/qcs_sdk/qpu/isa/__init__.py +40 -0
- qcs_sdk_python-0.27.2rc0/python/qcs_sdk/qpu/translation/__init__.py +28 -0
- qcs_sdk_python-0.27.2rc0/python/qcs_sdk/qvm/__init__.py +15 -0
- qcs_sdk_python-0.27.2rc0/python/qcs_sdk/qvm/api/__init__.py +40 -0
- qcs_sdk_python-0.26.4rc0/crates/lib/Makefile.toml +0 -185
- qcs_sdk_python-0.26.4rc0/crates/lib/poetry.lock +0 -1445
- qcs_sdk_python-0.26.4rc0/crates/lib/poetry.toml +0 -4
- qcs_sdk_python-0.26.4rc0/crates/lib/python/stubtest-allowlist +0 -46
- qcs_sdk_python-0.26.4rc0/crates/lib/scripts/patch_grpc_web.py +0 -31
- qcs_sdk_python-0.26.4rc0/crates/lib/src/python/mod.rs +0 -175
- qcs_sdk_python-0.26.4rc0/python/qcs_sdk/__init__.py +0 -23
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/README-py.md +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/THIRDPARTY.yaml +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/.flake8 +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/README-py.md +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/README.md +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/THIRDPARTY.yaml +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/build.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/examples/delayed_job_retrieval.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/examples/execute.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/examples/libquil.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/examples/local.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/examples/parametric_compilation.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/examples/quil_t.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/bin/diagnostics.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/bin/stub_gen.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/compiler/isa/edge.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/compiler/isa/mod.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/compiler/isa/operator.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/compiler/isa/qubit.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/compiler/libquil.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/compiler/mod.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/compiler/rpcq.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/diagnostics/mod.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/lib.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/python/client.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/python/nonzero.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/python/register_data.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qpu/execution.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qpu/experimental/mod.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qpu/experimental/python.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qpu/isa/mod.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qpu/mod.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/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.4rc0 → qcs_sdk_python-0.27.2rc0}/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.4rc0 → qcs_sdk_python-0.27.2rc0}/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.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_converts_frequency_expressions.snap +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_converts_phases.snap +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/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.4rc0 → qcs_sdk_python-0.27.2rc0}/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.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_substitutes_gate_parameters.snap +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qvm/execution.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qvm/libquil.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/src/qvm/snapshots/qcs__qvm__test__apply_valid_parameters_to_program.snap +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests/aspen_9_isa.json +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests/basic_qvm.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests/bell_state_response_data.hex +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests/compiler-isa-Aspen-8.json +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests/mocked_qpu.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests/parametric_compilation.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests/prng_test_cases.json +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests/qcs-isa-Aspen-8.json +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests/qvm_api.rs +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests/qvm_isa.json +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests/settings.toml +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests_py/_fixtures/aspen-m-3.json +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests_py/_fixtures/device-2q.json +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests_py/_qcs_config/secrets.toml +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests_py/_qcs_config/settings.toml +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests_py/compiler/__snapshots__/test_quilc.ambr +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests_py/qpu/experimental/test_random.py +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests_py/qpu/test_translation.py +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests_py/qvm/test_qvm.py +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/crates/lib/tests_py/test_logging.py +1 -1
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/python/qcs_sdk/_tracing_subscriber/__init__.py +0 -0
- {qcs_sdk_python-0.26.4rc0 → qcs_sdk_python-0.27.2rc0}/python/qcs_sdk/_tracing_subscriber/__init__.pyi +0 -0
|
@@ -47,9 +47,9 @@ dependencies = [
|
|
|
47
47
|
|
|
48
48
|
[[package]]
|
|
49
49
|
name = "anyhow"
|
|
50
|
-
version = "1.0.
|
|
50
|
+
version = "1.0.104"
|
|
51
51
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
52
|
-
checksum = "
|
|
52
|
+
checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
|
|
53
53
|
|
|
54
54
|
[[package]]
|
|
55
55
|
name = "approx"
|
|
@@ -105,9 +105,9 @@ dependencies = [
|
|
|
105
105
|
|
|
106
106
|
[[package]]
|
|
107
107
|
name = "async-tempfile"
|
|
108
|
-
version = "0.
|
|
108
|
+
version = "0.8.0"
|
|
109
109
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
-
checksum = "
|
|
110
|
+
checksum = "64782aa61953a4fa6f6ddc6b510942adffa37315f1cbf8ca7a96fdc990f913d5"
|
|
111
111
|
dependencies = [
|
|
112
112
|
"tokio",
|
|
113
113
|
"uuid",
|
|
@@ -261,7 +261,7 @@ dependencies = [
|
|
|
261
261
|
"bitflags 2.11.1",
|
|
262
262
|
"cexpr",
|
|
263
263
|
"clang-sys",
|
|
264
|
-
"itertools 0.
|
|
264
|
+
"itertools 0.12.1",
|
|
265
265
|
"log",
|
|
266
266
|
"prettyplease",
|
|
267
267
|
"proc-macro2",
|
|
@@ -386,12 +386,6 @@ dependencies = [
|
|
|
386
386
|
"shlex",
|
|
387
387
|
]
|
|
388
388
|
|
|
389
|
-
[[package]]
|
|
390
|
-
name = "cesu8"
|
|
391
|
-
version = "1.1.0"
|
|
392
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
-
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
394
|
-
|
|
395
389
|
[[package]]
|
|
396
390
|
name = "cexpr"
|
|
397
391
|
version = "0.6.0"
|
|
@@ -423,11 +417,22 @@ version = "0.2.1"
|
|
|
423
417
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
418
|
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
425
419
|
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "chacha20"
|
|
422
|
+
version = "0.10.1"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
|
|
425
|
+
dependencies = [
|
|
426
|
+
"cfg-if",
|
|
427
|
+
"cpufeatures 0.3.0",
|
|
428
|
+
"rand_core 0.10.1",
|
|
429
|
+
]
|
|
430
|
+
|
|
426
431
|
[[package]]
|
|
427
432
|
name = "chrono"
|
|
428
|
-
version = "0.4.
|
|
433
|
+
version = "0.4.45"
|
|
429
434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
-
checksum = "
|
|
435
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
431
436
|
dependencies = [
|
|
432
437
|
"iana-time-zone",
|
|
433
438
|
"js-sys",
|
|
@@ -495,7 +500,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
495
500
|
checksum = "20d9a563d167a9cce0f94153382b33cb6eded6dfabff03c69ad65a28ea1514e0"
|
|
496
501
|
dependencies = [
|
|
497
502
|
"cfg-if",
|
|
498
|
-
"cpufeatures",
|
|
503
|
+
"cpufeatures 0.2.17",
|
|
499
504
|
"proptest",
|
|
500
505
|
"serde_core",
|
|
501
506
|
]
|
|
@@ -506,6 +511,15 @@ version = "0.9.6"
|
|
|
506
511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
512
|
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
508
513
|
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "convert_case"
|
|
516
|
+
version = "0.10.0"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
|
|
519
|
+
dependencies = [
|
|
520
|
+
"unicode-segmentation",
|
|
521
|
+
]
|
|
522
|
+
|
|
509
523
|
[[package]]
|
|
510
524
|
name = "cookie"
|
|
511
525
|
version = "0.18.1"
|
|
@@ -570,6 +584,15 @@ dependencies = [
|
|
|
570
584
|
"libc",
|
|
571
585
|
]
|
|
572
586
|
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "cpufeatures"
|
|
589
|
+
version = "0.3.0"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
|
|
592
|
+
dependencies = [
|
|
593
|
+
"libc",
|
|
594
|
+
]
|
|
595
|
+
|
|
573
596
|
[[package]]
|
|
574
597
|
name = "crc32fast"
|
|
575
598
|
version = "1.5.0"
|
|
@@ -613,9 +636,9 @@ dependencies = [
|
|
|
613
636
|
|
|
614
637
|
[[package]]
|
|
615
638
|
name = "crossbeam-epoch"
|
|
616
|
-
version = "0.9.
|
|
639
|
+
version = "0.9.20"
|
|
617
640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
-
checksum = "
|
|
641
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
619
642
|
dependencies = [
|
|
620
643
|
"crossbeam-utils",
|
|
621
644
|
]
|
|
@@ -789,6 +812,17 @@ dependencies = [
|
|
|
789
812
|
"serde_core",
|
|
790
813
|
]
|
|
791
814
|
|
|
815
|
+
[[package]]
|
|
816
|
+
name = "derive-where"
|
|
817
|
+
version = "1.6.1"
|
|
818
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
|
+
checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534"
|
|
820
|
+
dependencies = [
|
|
821
|
+
"proc-macro2",
|
|
822
|
+
"quote",
|
|
823
|
+
"syn 2.0.117",
|
|
824
|
+
]
|
|
825
|
+
|
|
792
826
|
[[package]]
|
|
793
827
|
name = "derive_builder"
|
|
794
828
|
version = "0.20.2"
|
|
@@ -820,6 +854,29 @@ dependencies = [
|
|
|
820
854
|
"syn 2.0.117",
|
|
821
855
|
]
|
|
822
856
|
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "derive_more"
|
|
859
|
+
version = "2.1.1"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
|
|
862
|
+
dependencies = [
|
|
863
|
+
"derive_more-impl",
|
|
864
|
+
]
|
|
865
|
+
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "derive_more-impl"
|
|
868
|
+
version = "2.1.1"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
|
|
871
|
+
dependencies = [
|
|
872
|
+
"convert_case",
|
|
873
|
+
"proc-macro2",
|
|
874
|
+
"quote",
|
|
875
|
+
"rustc_version",
|
|
876
|
+
"syn 2.0.117",
|
|
877
|
+
"unicode-xid",
|
|
878
|
+
]
|
|
879
|
+
|
|
823
880
|
[[package]]
|
|
824
881
|
name = "diff"
|
|
825
882
|
version = "0.1.13"
|
|
@@ -848,6 +905,16 @@ dependencies = [
|
|
|
848
905
|
"walkdir",
|
|
849
906
|
]
|
|
850
907
|
|
|
908
|
+
[[package]]
|
|
909
|
+
name = "dispatch2"
|
|
910
|
+
version = "0.3.1"
|
|
911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
912
|
+
checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
|
|
913
|
+
dependencies = [
|
|
914
|
+
"bitflags 2.11.1",
|
|
915
|
+
"objc2",
|
|
916
|
+
]
|
|
917
|
+
|
|
851
918
|
[[package]]
|
|
852
919
|
name = "displaydoc"
|
|
853
920
|
version = "0.2.5"
|
|
@@ -882,9 +949,9 @@ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
|
882
949
|
|
|
883
950
|
[[package]]
|
|
884
951
|
name = "either"
|
|
885
|
-
version = "1.
|
|
952
|
+
version = "1.17.0"
|
|
886
953
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
-
checksum = "
|
|
954
|
+
checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
|
|
888
955
|
|
|
889
956
|
[[package]]
|
|
890
957
|
name = "encode_unicode"
|
|
@@ -1172,11 +1239,46 @@ dependencies = [
|
|
|
1172
1239
|
"cfg-if",
|
|
1173
1240
|
"js-sys",
|
|
1174
1241
|
"libc",
|
|
1175
|
-
"r-efi",
|
|
1242
|
+
"r-efi 5.3.0",
|
|
1176
1243
|
"wasip2",
|
|
1177
1244
|
"wasm-bindgen",
|
|
1178
1245
|
]
|
|
1179
1246
|
|
|
1247
|
+
[[package]]
|
|
1248
|
+
name = "getrandom"
|
|
1249
|
+
version = "0.4.3"
|
|
1250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
1252
|
+
dependencies = [
|
|
1253
|
+
"cfg-if",
|
|
1254
|
+
"libc",
|
|
1255
|
+
"r-efi 6.0.0",
|
|
1256
|
+
]
|
|
1257
|
+
|
|
1258
|
+
[[package]]
|
|
1259
|
+
name = "glam"
|
|
1260
|
+
version = "0.30.10"
|
|
1261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1262
|
+
checksum = "19fc433e8437a212d1b6f1e68c7824af3aed907da60afa994e7f542d18d12aa9"
|
|
1263
|
+
|
|
1264
|
+
[[package]]
|
|
1265
|
+
name = "glam"
|
|
1266
|
+
version = "0.31.1"
|
|
1267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1268
|
+
checksum = "556f6b2ea90b8d15a74e0e7bb41671c9bdf38cd9f78c284d750b9ce58a2b5be7"
|
|
1269
|
+
|
|
1270
|
+
[[package]]
|
|
1271
|
+
name = "glam"
|
|
1272
|
+
version = "0.32.1"
|
|
1273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
+
checksum = "f70749695b063ecbf6b62949ccccde2e733ec3ecbbd71d467dca4e5c6c97cca0"
|
|
1275
|
+
|
|
1276
|
+
[[package]]
|
|
1277
|
+
name = "glam"
|
|
1278
|
+
version = "0.33.5"
|
|
1279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1280
|
+
checksum = "c426daf70099baff33fac0ba85151c42424861c56828cef9ba02dacb78eb6b26"
|
|
1281
|
+
|
|
1180
1282
|
[[package]]
|
|
1181
1283
|
name = "glob"
|
|
1182
1284
|
version = "0.3.3"
|
|
@@ -1185,9 +1287,9 @@ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
|
1185
1287
|
|
|
1186
1288
|
[[package]]
|
|
1187
1289
|
name = "h2"
|
|
1188
|
-
version = "0.4.
|
|
1290
|
+
version = "0.4.16"
|
|
1189
1291
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1190
|
-
checksum = "
|
|
1292
|
+
checksum = "a9f37a958b41b3b19ee2707c06439c0e9e547e847223eb791ecb0cb821c65e27"
|
|
1191
1293
|
dependencies = [
|
|
1192
1294
|
"atomic-waker",
|
|
1193
1295
|
"bytes",
|
|
@@ -1215,7 +1317,7 @@ dependencies = [
|
|
|
1215
1317
|
"pest_derive",
|
|
1216
1318
|
"serde",
|
|
1217
1319
|
"serde_json",
|
|
1218
|
-
"thiserror 2.0.
|
|
1320
|
+
"thiserror 2.0.20",
|
|
1219
1321
|
]
|
|
1220
1322
|
|
|
1221
1323
|
[[package]]
|
|
@@ -1614,15 +1716,6 @@ dependencies = [
|
|
|
1614
1716
|
"serde_core",
|
|
1615
1717
|
]
|
|
1616
1718
|
|
|
1617
|
-
[[package]]
|
|
1618
|
-
name = "indoc"
|
|
1619
|
-
version = "2.0.7"
|
|
1620
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1621
|
-
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
1622
|
-
dependencies = [
|
|
1623
|
-
"rustversion",
|
|
1624
|
-
]
|
|
1625
|
-
|
|
1626
1719
|
[[package]]
|
|
1627
1720
|
name = "inlinable_string"
|
|
1628
1721
|
version = "0.1.15"
|
|
@@ -1664,9 +1757,9 @@ dependencies = [
|
|
|
1664
1757
|
|
|
1665
1758
|
[[package]]
|
|
1666
1759
|
name = "inventory"
|
|
1667
|
-
version = "0.3.
|
|
1760
|
+
version = "0.3.24"
|
|
1668
1761
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1669
|
-
checksum = "
|
|
1762
|
+
checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
|
|
1670
1763
|
dependencies = [
|
|
1671
1764
|
"rustversion",
|
|
1672
1765
|
]
|
|
@@ -1717,15 +1810,6 @@ dependencies = [
|
|
|
1717
1810
|
"either",
|
|
1718
1811
|
]
|
|
1719
1812
|
|
|
1720
|
-
[[package]]
|
|
1721
|
-
name = "itertools"
|
|
1722
|
-
version = "0.13.0"
|
|
1723
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1724
|
-
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1725
|
-
dependencies = [
|
|
1726
|
-
"either",
|
|
1727
|
-
]
|
|
1728
|
-
|
|
1729
1813
|
[[package]]
|
|
1730
1814
|
name = "itertools"
|
|
1731
1815
|
version = "0.14.0"
|
|
@@ -1741,22 +1825,6 @@ version = "1.0.18"
|
|
|
1741
1825
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1742
1826
|
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1743
1827
|
|
|
1744
|
-
[[package]]
|
|
1745
|
-
name = "jni"
|
|
1746
|
-
version = "0.21.1"
|
|
1747
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1748
|
-
checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
|
|
1749
|
-
dependencies = [
|
|
1750
|
-
"cesu8",
|
|
1751
|
-
"cfg-if",
|
|
1752
|
-
"combine",
|
|
1753
|
-
"jni-sys 0.3.0",
|
|
1754
|
-
"log",
|
|
1755
|
-
"thiserror 1.0.69",
|
|
1756
|
-
"walkdir",
|
|
1757
|
-
"windows-sys 0.45.0",
|
|
1758
|
-
]
|
|
1759
|
-
|
|
1760
1828
|
[[package]]
|
|
1761
1829
|
name = "jni"
|
|
1762
1830
|
version = "0.22.4"
|
|
@@ -1766,10 +1834,10 @@ dependencies = [
|
|
|
1766
1834
|
"cfg-if",
|
|
1767
1835
|
"combine",
|
|
1768
1836
|
"jni-macros",
|
|
1769
|
-
"jni-sys
|
|
1837
|
+
"jni-sys",
|
|
1770
1838
|
"log",
|
|
1771
1839
|
"simd_cesu8",
|
|
1772
|
-
"thiserror 2.0.
|
|
1840
|
+
"thiserror 2.0.20",
|
|
1773
1841
|
"walkdir",
|
|
1774
1842
|
"windows-link",
|
|
1775
1843
|
]
|
|
@@ -1787,12 +1855,6 @@ dependencies = [
|
|
|
1787
1855
|
"syn 2.0.117",
|
|
1788
1856
|
]
|
|
1789
1857
|
|
|
1790
|
-
[[package]]
|
|
1791
|
-
name = "jni-sys"
|
|
1792
|
-
version = "0.3.0"
|
|
1793
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1794
|
-
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
|
|
1795
|
-
|
|
1796
1858
|
[[package]]
|
|
1797
1859
|
name = "jni-sys"
|
|
1798
1860
|
version = "0.4.1"
|
|
@@ -1979,19 +2041,19 @@ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
|
1979
2041
|
|
|
1980
2042
|
[[package]]
|
|
1981
2043
|
name = "libquil-sys"
|
|
1982
|
-
version = "0.5.
|
|
2044
|
+
version = "0.5.1"
|
|
1983
2045
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
|
-
checksum = "
|
|
2046
|
+
checksum = "3c622d7bfed37deb5b6c604865b831bdd15010b92245c64e26628306e653fd06"
|
|
1985
2047
|
dependencies = [
|
|
1986
2048
|
"bindgen",
|
|
1987
2049
|
"cc",
|
|
1988
2050
|
"libc",
|
|
1989
2051
|
"libloading",
|
|
1990
2052
|
"num-complex",
|
|
1991
|
-
"
|
|
2053
|
+
"pastey",
|
|
1992
2054
|
"pkg-config",
|
|
1993
2055
|
"serde_json",
|
|
1994
|
-
"thiserror 2.0.
|
|
2056
|
+
"thiserror 2.0.20",
|
|
1995
2057
|
]
|
|
1996
2058
|
|
|
1997
2059
|
[[package]]
|
|
@@ -2023,9 +2085,9 @@ dependencies = [
|
|
|
2023
2085
|
|
|
2024
2086
|
[[package]]
|
|
2025
2087
|
name = "log"
|
|
2026
|
-
version = "0.4.
|
|
2088
|
+
version = "0.4.33"
|
|
2027
2089
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2028
|
-
checksum = "
|
|
2090
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
2029
2091
|
|
|
2030
2092
|
[[package]]
|
|
2031
2093
|
name = "lru-slab"
|
|
@@ -2070,15 +2132,6 @@ version = "2.8.0"
|
|
|
2070
2132
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2071
2133
|
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
2072
2134
|
|
|
2073
|
-
[[package]]
|
|
2074
|
-
name = "memoffset"
|
|
2075
|
-
version = "0.9.1"
|
|
2076
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2077
|
-
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
2078
|
-
dependencies = [
|
|
2079
|
-
"autocfg",
|
|
2080
|
-
]
|
|
2081
|
-
|
|
2082
2135
|
[[package]]
|
|
2083
2136
|
name = "mime"
|
|
2084
2137
|
version = "0.3.17"
|
|
@@ -2130,33 +2183,24 @@ checksum = "1d87ecb2933e8aeadb3e3a02b828fed80a7528047e68b4f424523a0981a3a084"
|
|
|
2130
2183
|
|
|
2131
2184
|
[[package]]
|
|
2132
2185
|
name = "nalgebra"
|
|
2133
|
-
version = "0.
|
|
2186
|
+
version = "0.35.0"
|
|
2134
2187
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2135
|
-
checksum = "
|
|
2188
|
+
checksum = "adc43a60c217b0c6ff46e47f26911015ad8d2e5a8be1af668c67e370d99a4346"
|
|
2136
2189
|
dependencies = [
|
|
2137
2190
|
"approx",
|
|
2191
|
+
"glam 0.30.10",
|
|
2192
|
+
"glam 0.31.1",
|
|
2193
|
+
"glam 0.32.1",
|
|
2194
|
+
"glam 0.33.5",
|
|
2138
2195
|
"matrixmultiply",
|
|
2139
|
-
"nalgebra-macros",
|
|
2140
2196
|
"num-complex",
|
|
2141
2197
|
"num-rational",
|
|
2142
2198
|
"num-traits",
|
|
2143
|
-
"rand 0.
|
|
2144
|
-
"rand_distr",
|
|
2199
|
+
"rand 0.10.2",
|
|
2145
2200
|
"simba",
|
|
2146
2201
|
"typenum",
|
|
2147
2202
|
]
|
|
2148
2203
|
|
|
2149
|
-
[[package]]
|
|
2150
|
-
name = "nalgebra-macros"
|
|
2151
|
-
version = "0.1.0"
|
|
2152
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2153
|
-
checksum = "01fcc0b8149b4632adc89ac3b7b31a12fb6099a0317a4eb2ebff574ef7de7218"
|
|
2154
|
-
dependencies = [
|
|
2155
|
-
"proc-macro2",
|
|
2156
|
-
"quote",
|
|
2157
|
-
"syn 1.0.109",
|
|
2158
|
-
]
|
|
2159
|
-
|
|
2160
2204
|
[[package]]
|
|
2161
2205
|
name = "native-tls"
|
|
2162
2206
|
version = "0.2.14"
|
|
@@ -2343,9 +2387,9 @@ dependencies = [
|
|
|
2343
2387
|
|
|
2344
2388
|
[[package]]
|
|
2345
2389
|
name = "numpy"
|
|
2346
|
-
version = "0.
|
|
2390
|
+
version = "0.29.0"
|
|
2347
2391
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2348
|
-
checksum = "
|
|
2392
|
+
checksum = "6a5b15d63a5ff39e378daed0e1340d3a5964703ea9712eb09a0dc66fade996f4"
|
|
2349
2393
|
dependencies = [
|
|
2350
2394
|
"libc",
|
|
2351
2395
|
"ndarray",
|
|
@@ -2414,6 +2458,28 @@ dependencies = [
|
|
|
2414
2458
|
"objc2-encode",
|
|
2415
2459
|
]
|
|
2416
2460
|
|
|
2461
|
+
[[package]]
|
|
2462
|
+
name = "objc2-app-kit"
|
|
2463
|
+
version = "0.3.2"
|
|
2464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2465
|
+
checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c"
|
|
2466
|
+
dependencies = [
|
|
2467
|
+
"bitflags 2.11.1",
|
|
2468
|
+
"objc2",
|
|
2469
|
+
"objc2-foundation",
|
|
2470
|
+
]
|
|
2471
|
+
|
|
2472
|
+
[[package]]
|
|
2473
|
+
name = "objc2-core-foundation"
|
|
2474
|
+
version = "0.3.2"
|
|
2475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2476
|
+
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
|
2477
|
+
dependencies = [
|
|
2478
|
+
"bitflags 2.11.1",
|
|
2479
|
+
"dispatch2",
|
|
2480
|
+
"objc2",
|
|
2481
|
+
]
|
|
2482
|
+
|
|
2417
2483
|
[[package]]
|
|
2418
2484
|
name = "objc2-encode"
|
|
2419
2485
|
version = "4.1.0"
|
|
@@ -2428,6 +2494,7 @@ checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
|
|
|
2428
2494
|
dependencies = [
|
|
2429
2495
|
"bitflags 2.11.1",
|
|
2430
2496
|
"objc2",
|
|
2497
|
+
"objc2-core-foundation",
|
|
2431
2498
|
]
|
|
2432
2499
|
|
|
2433
2500
|
[[package]]
|
|
@@ -2496,7 +2563,7 @@ dependencies = [
|
|
|
2496
2563
|
"futures-sink",
|
|
2497
2564
|
"js-sys",
|
|
2498
2565
|
"pin-project-lite",
|
|
2499
|
-
"thiserror 2.0.
|
|
2566
|
+
"thiserror 2.0.20",
|
|
2500
2567
|
"tracing",
|
|
2501
2568
|
]
|
|
2502
2569
|
|
|
@@ -2523,7 +2590,7 @@ dependencies = [
|
|
|
2523
2590
|
"opentelemetry-proto",
|
|
2524
2591
|
"opentelemetry_sdk",
|
|
2525
2592
|
"prost",
|
|
2526
|
-
"thiserror 2.0.
|
|
2593
|
+
"thiserror 2.0.20",
|
|
2527
2594
|
"tokio",
|
|
2528
2595
|
"tonic",
|
|
2529
2596
|
]
|
|
@@ -2557,16 +2624,27 @@ dependencies = [
|
|
|
2557
2624
|
"opentelemetry",
|
|
2558
2625
|
"percent-encoding",
|
|
2559
2626
|
"rand 0.9.2",
|
|
2560
|
-
"thiserror 2.0.
|
|
2627
|
+
"thiserror 2.0.20",
|
|
2561
2628
|
"tokio",
|
|
2562
2629
|
"tokio-stream",
|
|
2563
2630
|
]
|
|
2564
2631
|
|
|
2565
2632
|
[[package]]
|
|
2566
2633
|
name = "optipy"
|
|
2567
|
-
version = "0.1.
|
|
2634
|
+
version = "0.1.4"
|
|
2568
2635
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2569
|
-
checksum = "
|
|
2636
|
+
checksum = "a3e278be53c02ede90508fb229efd13c14a17ad905db34c88ff49c25639de0fc"
|
|
2637
|
+
dependencies = [
|
|
2638
|
+
"proc-macro2",
|
|
2639
|
+
"quote",
|
|
2640
|
+
"syn 2.0.117",
|
|
2641
|
+
]
|
|
2642
|
+
|
|
2643
|
+
[[package]]
|
|
2644
|
+
name = "optipy"
|
|
2645
|
+
version = "0.2.1"
|
|
2646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2647
|
+
checksum = "861264739d9b482f654ce5bf9a7123dc2bc47b1f3c3820af990c0576ca3ecba7"
|
|
2570
2648
|
dependencies = [
|
|
2571
2649
|
"proc-macro2",
|
|
2572
2650
|
"quote",
|
|
@@ -2575,9 +2653,9 @@ dependencies = [
|
|
|
2575
2653
|
|
|
2576
2654
|
[[package]]
|
|
2577
2655
|
name = "ordered-float"
|
|
2578
|
-
version = "5.
|
|
2656
|
+
version = "5.3.0"
|
|
2579
2657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2580
|
-
checksum = "
|
|
2658
|
+
checksum = "b7d950ca161dc355eaf28f82b11345ed76c6e1f6eb1f4f4479e0323b9e2fbd0e"
|
|
2581
2659
|
dependencies = [
|
|
2582
2660
|
"num-traits",
|
|
2583
2661
|
]
|
|
@@ -2605,12 +2683,6 @@ dependencies = [
|
|
|
2605
2683
|
"windows-link",
|
|
2606
2684
|
]
|
|
2607
2685
|
|
|
2608
|
-
[[package]]
|
|
2609
|
-
name = "paste"
|
|
2610
|
-
version = "1.0.15"
|
|
2611
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2612
|
-
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2613
|
-
|
|
2614
2686
|
[[package]]
|
|
2615
2687
|
name = "pastey"
|
|
2616
2688
|
version = "0.2.2"
|
|
@@ -2974,8 +3046,8 @@ version = "0.14.3"
|
|
|
2974
3046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2975
3047
|
checksum = "343d3bd7056eda839b03204e68deff7d1b13aba7af2b2fd16890697274262ee7"
|
|
2976
3048
|
dependencies = [
|
|
2977
|
-
"heck 0.
|
|
2978
|
-
"itertools 0.
|
|
3049
|
+
"heck 0.4.1",
|
|
3050
|
+
"itertools 0.12.1",
|
|
2979
3051
|
"log",
|
|
2980
3052
|
"multimap",
|
|
2981
3053
|
"petgraph 0.8.3",
|
|
@@ -2996,7 +3068,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2996
3068
|
checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
|
|
2997
3069
|
dependencies = [
|
|
2998
3070
|
"anyhow",
|
|
2999
|
-
"itertools 0.
|
|
3071
|
+
"itertools 0.12.1",
|
|
3000
3072
|
"proc-macro2",
|
|
3001
3073
|
"quote",
|
|
3002
3074
|
"syn 2.0.117",
|
|
@@ -3049,31 +3121,29 @@ dependencies = [
|
|
|
3049
3121
|
|
|
3050
3122
|
[[package]]
|
|
3051
3123
|
name = "pyo3"
|
|
3052
|
-
version = "0.
|
|
3124
|
+
version = "0.29.2"
|
|
3053
3125
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3054
|
-
checksum = "
|
|
3126
|
+
checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
|
|
3055
3127
|
dependencies = [
|
|
3056
3128
|
"indexmap 2.13.0",
|
|
3057
|
-
"indoc",
|
|
3058
3129
|
"inventory",
|
|
3059
3130
|
"libc",
|
|
3060
|
-
"memoffset",
|
|
3061
3131
|
"num-complex",
|
|
3062
3132
|
"once_cell",
|
|
3063
3133
|
"portable-atomic",
|
|
3064
3134
|
"pyo3-build-config",
|
|
3065
3135
|
"pyo3-ffi",
|
|
3066
3136
|
"pyo3-macros",
|
|
3067
|
-
"unindent",
|
|
3068
3137
|
]
|
|
3069
3138
|
|
|
3070
3139
|
[[package]]
|
|
3071
3140
|
name = "pyo3-async-runtimes"
|
|
3072
|
-
version = "0.
|
|
3141
|
+
version = "0.29.0"
|
|
3073
3142
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3074
|
-
checksum = "
|
|
3143
|
+
checksum = "b3ef68daa7316a3fac65e5e18b2203f010346de1c1c53456811a2624673ab046"
|
|
3075
3144
|
dependencies = [
|
|
3076
|
-
"futures",
|
|
3145
|
+
"futures-channel",
|
|
3146
|
+
"futures-util",
|
|
3077
3147
|
"once_cell",
|
|
3078
3148
|
"pin-project-lite",
|
|
3079
3149
|
"pyo3",
|
|
@@ -3083,9 +3153,9 @@ dependencies = [
|
|
|
3083
3153
|
|
|
3084
3154
|
[[package]]
|
|
3085
3155
|
name = "pyo3-async-runtimes-macros"
|
|
3086
|
-
version = "0.
|
|
3156
|
+
version = "0.29.0"
|
|
3087
3157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3088
|
-
checksum = "
|
|
3158
|
+
checksum = "faf75ff3922e6830adcaa30f3a359ce861326f6161f16a13d97adb40ba6a744a"
|
|
3089
3159
|
dependencies = [
|
|
3090
3160
|
"proc-macro2",
|
|
3091
3161
|
"quote",
|
|
@@ -3094,18 +3164,18 @@ dependencies = [
|
|
|
3094
3164
|
|
|
3095
3165
|
[[package]]
|
|
3096
3166
|
name = "pyo3-build-config"
|
|
3097
|
-
version = "0.
|
|
3167
|
+
version = "0.29.2"
|
|
3098
3168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3099
|
-
checksum = "
|
|
3169
|
+
checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
|
|
3100
3170
|
dependencies = [
|
|
3101
3171
|
"target-lexicon 0.13.4",
|
|
3102
3172
|
]
|
|
3103
3173
|
|
|
3104
3174
|
[[package]]
|
|
3105
3175
|
name = "pyo3-ffi"
|
|
3106
|
-
version = "0.
|
|
3176
|
+
version = "0.29.2"
|
|
3107
3177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3108
|
-
checksum = "
|
|
3178
|
+
checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
|
|
3109
3179
|
dependencies = [
|
|
3110
3180
|
"libc",
|
|
3111
3181
|
"pyo3-build-config",
|
|
@@ -3113,9 +3183,9 @@ dependencies = [
|
|
|
3113
3183
|
|
|
3114
3184
|
[[package]]
|
|
3115
3185
|
name = "pyo3-log"
|
|
3116
|
-
version = "0.13.
|
|
3186
|
+
version = "0.13.4"
|
|
3117
3187
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3118
|
-
checksum = "
|
|
3188
|
+
checksum = "f64083bd3a16a353d9d62335808e8e13d0552d2a2b83fdb084496192dcfa9fcd"
|
|
3119
3189
|
dependencies = [
|
|
3120
3190
|
"arc-swap",
|
|
3121
3191
|
"log",
|
|
@@ -3124,9 +3194,9 @@ dependencies = [
|
|
|
3124
3194
|
|
|
3125
3195
|
[[package]]
|
|
3126
3196
|
name = "pyo3-macros"
|
|
3127
|
-
version = "0.
|
|
3197
|
+
version = "0.29.2"
|
|
3128
3198
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3129
|
-
checksum = "
|
|
3199
|
+
checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
|
|
3130
3200
|
dependencies = [
|
|
3131
3201
|
"proc-macro2",
|
|
3132
3202
|
"pyo3-macros-backend",
|
|
@@ -3136,22 +3206,21 @@ dependencies = [
|
|
|
3136
3206
|
|
|
3137
3207
|
[[package]]
|
|
3138
3208
|
name = "pyo3-macros-backend"
|
|
3139
|
-
version = "0.
|
|
3209
|
+
version = "0.29.2"
|
|
3140
3210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3141
|
-
checksum = "
|
|
3211
|
+
checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
|
|
3142
3212
|
dependencies = [
|
|
3143
3213
|
"heck 0.5.0",
|
|
3144
3214
|
"proc-macro2",
|
|
3145
|
-
"pyo3-build-config",
|
|
3146
3215
|
"quote",
|
|
3147
3216
|
"syn 2.0.117",
|
|
3148
3217
|
]
|
|
3149
3218
|
|
|
3150
3219
|
[[package]]
|
|
3151
3220
|
name = "pyo3-opentelemetry"
|
|
3152
|
-
version = "0.
|
|
3221
|
+
version = "0.11.0"
|
|
3153
3222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3154
|
-
checksum = "
|
|
3223
|
+
checksum = "751d9b7fc7751abbee4110735a420cfc4ae172698b5a8aac0f417df3776b10d5"
|
|
3155
3224
|
dependencies = [
|
|
3156
3225
|
"pyo3",
|
|
3157
3226
|
"pyo3-opentelemetry-macros",
|
|
@@ -3160,9 +3229,9 @@ dependencies = [
|
|
|
3160
3229
|
|
|
3161
3230
|
[[package]]
|
|
3162
3231
|
name = "pyo3-opentelemetry-macros"
|
|
3163
|
-
version = "0.
|
|
3232
|
+
version = "0.11.0"
|
|
3164
3233
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3165
|
-
checksum = "
|
|
3234
|
+
checksum = "7c303ed73d294dd7b88f0262afdbfab275b6bae37f2556c0120965649c094e7f"
|
|
3166
3235
|
dependencies = [
|
|
3167
3236
|
"proc-macro2",
|
|
3168
3237
|
"quote",
|
|
@@ -3171,9 +3240,9 @@ dependencies = [
|
|
|
3171
3240
|
|
|
3172
3241
|
[[package]]
|
|
3173
3242
|
name = "pyo3-stub-gen"
|
|
3174
|
-
version = "0.
|
|
3243
|
+
version = "0.23.0"
|
|
3175
3244
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3176
|
-
checksum = "
|
|
3245
|
+
checksum = "a267ea4da9a831f534def7f1d8e14f581d5640d3e5af6527072724f216f4dbbf"
|
|
3177
3246
|
dependencies = [
|
|
3178
3247
|
"anyhow",
|
|
3179
3248
|
"chrono",
|
|
@@ -3188,15 +3257,18 @@ dependencies = [
|
|
|
3188
3257
|
"ordered-float",
|
|
3189
3258
|
"pyo3",
|
|
3190
3259
|
"pyo3-stub-gen-derive",
|
|
3260
|
+
"rustpython-parser",
|
|
3191
3261
|
"serde",
|
|
3192
|
-
"
|
|
3262
|
+
"serde_json",
|
|
3263
|
+
"time",
|
|
3264
|
+
"toml 1.1.4+spec-1.1.0",
|
|
3193
3265
|
]
|
|
3194
3266
|
|
|
3195
3267
|
[[package]]
|
|
3196
3268
|
name = "pyo3-stub-gen-derive"
|
|
3197
|
-
version = "0.
|
|
3269
|
+
version = "0.23.0"
|
|
3198
3270
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3199
|
-
checksum = "
|
|
3271
|
+
checksum = "6573423a5e8cc43ec7565eccccbc2dd35e1fc9032d9ca404afab875429eb8cf0"
|
|
3200
3272
|
dependencies = [
|
|
3201
3273
|
"heck 0.5.0",
|
|
3202
3274
|
"indexmap 2.13.0",
|
|
@@ -3208,18 +3280,18 @@ dependencies = [
|
|
|
3208
3280
|
|
|
3209
3281
|
[[package]]
|
|
3210
3282
|
name = "pyo3-tracing-subscriber"
|
|
3211
|
-
version = "0.
|
|
3283
|
+
version = "0.9.0"
|
|
3212
3284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3213
|
-
checksum = "
|
|
3285
|
+
checksum = "c8eef7a29520a43da6e6b6a021d3faf81c2b5464b170fb524ec0ebc25137cad7"
|
|
3214
3286
|
dependencies = [
|
|
3215
3287
|
"futures-core",
|
|
3216
3288
|
"pyo3",
|
|
3217
3289
|
"pyo3-async-runtimes",
|
|
3218
3290
|
"qcs-dependencies-client",
|
|
3219
|
-
"rigetti-pyo3",
|
|
3291
|
+
"rigetti-pyo3 0.8.1",
|
|
3220
3292
|
"serde",
|
|
3221
3293
|
"serde_json",
|
|
3222
|
-
"thiserror 2.0.
|
|
3294
|
+
"thiserror 2.0.20",
|
|
3223
3295
|
"tokio",
|
|
3224
3296
|
"tracing",
|
|
3225
3297
|
"tracing-subscriber",
|
|
@@ -3227,18 +3299,18 @@ dependencies = [
|
|
|
3227
3299
|
|
|
3228
3300
|
[[package]]
|
|
3229
3301
|
name = "pyo3-tracing-subscriber-build"
|
|
3230
|
-
version = "0.
|
|
3302
|
+
version = "0.9.0"
|
|
3231
3303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3232
|
-
checksum = "
|
|
3304
|
+
checksum = "fa1d2d8629e327274fb0688b4e89d91c3a2dd1f0d5751400826b511a63915102"
|
|
3233
3305
|
dependencies = [
|
|
3234
3306
|
"handlebars",
|
|
3235
3307
|
"serde",
|
|
3236
|
-
"thiserror 2.0.
|
|
3308
|
+
"thiserror 2.0.20",
|
|
3237
3309
|
]
|
|
3238
3310
|
|
|
3239
3311
|
[[package]]
|
|
3240
3312
|
name = "qcs"
|
|
3241
|
-
version = "0.
|
|
3313
|
+
version = "0.27.2-rc.0"
|
|
3242
3314
|
dependencies = [
|
|
3243
3315
|
"assert2",
|
|
3244
3316
|
"async-trait",
|
|
@@ -3261,7 +3333,7 @@ dependencies = [
|
|
|
3261
3333
|
"num",
|
|
3262
3334
|
"numpy",
|
|
3263
3335
|
"oauth2-test-server",
|
|
3264
|
-
"optipy",
|
|
3336
|
+
"optipy 0.2.1",
|
|
3265
3337
|
"pastey",
|
|
3266
3338
|
"pyo3",
|
|
3267
3339
|
"pyo3-async-runtimes",
|
|
@@ -3277,7 +3349,7 @@ dependencies = [
|
|
|
3277
3349
|
"qcs-dependencies-client",
|
|
3278
3350
|
"quil-rs",
|
|
3279
3351
|
"regex",
|
|
3280
|
-
"rigetti-pyo3",
|
|
3352
|
+
"rigetti-pyo3 0.8.1",
|
|
3281
3353
|
"rmp-serde",
|
|
3282
3354
|
"rstest",
|
|
3283
3355
|
"serde",
|
|
@@ -3285,7 +3357,7 @@ dependencies = [
|
|
|
3285
3357
|
"simple_logger",
|
|
3286
3358
|
"tempfile",
|
|
3287
3359
|
"test-case",
|
|
3288
|
-
"thiserror 2.0.
|
|
3360
|
+
"thiserror 2.0.20",
|
|
3289
3361
|
"tokio",
|
|
3290
3362
|
"tokio-util",
|
|
3291
3363
|
"toml 0.9.11+spec-1.1.0",
|
|
@@ -3298,9 +3370,9 @@ dependencies = [
|
|
|
3298
3370
|
|
|
3299
3371
|
[[package]]
|
|
3300
3372
|
name = "qcs-api-client-common"
|
|
3301
|
-
version = "0.
|
|
3373
|
+
version = "0.19.0"
|
|
3302
3374
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3303
|
-
checksum = "
|
|
3375
|
+
checksum = "2b18ee6da7075796d52a4955a5627ae15b2ca4e05f5925370844279f5b2c6d57"
|
|
3304
3376
|
dependencies = [
|
|
3305
3377
|
"async-tempfile",
|
|
3306
3378
|
"async-trait",
|
|
@@ -3314,17 +3386,17 @@ dependencies = [
|
|
|
3314
3386
|
"hyper-util",
|
|
3315
3387
|
"jsonwebtoken 9.3.1",
|
|
3316
3388
|
"oauth2",
|
|
3317
|
-
"optipy",
|
|
3389
|
+
"optipy 0.1.4",
|
|
3318
3390
|
"pyo3",
|
|
3319
3391
|
"pyo3-async-runtimes",
|
|
3320
3392
|
"pyo3-build-config",
|
|
3321
3393
|
"pyo3-stub-gen",
|
|
3322
3394
|
"qcs-dependencies-client",
|
|
3323
|
-
"rigetti-pyo3",
|
|
3395
|
+
"rigetti-pyo3 0.8.1",
|
|
3324
3396
|
"serde",
|
|
3325
3397
|
"serde_json",
|
|
3326
3398
|
"shellexpand",
|
|
3327
|
-
"thiserror 2.0.
|
|
3399
|
+
"thiserror 2.0.20",
|
|
3328
3400
|
"time",
|
|
3329
3401
|
"tokio",
|
|
3330
3402
|
"tokio-util",
|
|
@@ -3338,9 +3410,9 @@ dependencies = [
|
|
|
3338
3410
|
|
|
3339
3411
|
[[package]]
|
|
3340
3412
|
name = "qcs-api-client-grpc"
|
|
3341
|
-
version = "0.
|
|
3413
|
+
version = "0.19.0"
|
|
3342
3414
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3343
|
-
checksum = "
|
|
3415
|
+
checksum = "ebcb9f81b22e5382b0751dc3b2c9d58be4340241a85ff940d66d94529d86587d"
|
|
3344
3416
|
dependencies = [
|
|
3345
3417
|
"backoff",
|
|
3346
3418
|
"futures-util",
|
|
@@ -3353,7 +3425,7 @@ dependencies = [
|
|
|
3353
3425
|
"qcs-dependencies-client",
|
|
3354
3426
|
"rigetti-hyper-proxy",
|
|
3355
3427
|
"serde",
|
|
3356
|
-
"thiserror 2.0.
|
|
3428
|
+
"thiserror 2.0.20",
|
|
3357
3429
|
"tokio",
|
|
3358
3430
|
"tracing",
|
|
3359
3431
|
"url",
|
|
@@ -3363,9 +3435,9 @@ dependencies = [
|
|
|
3363
3435
|
|
|
3364
3436
|
[[package]]
|
|
3365
3437
|
name = "qcs-api-client-openapi"
|
|
3366
|
-
version = "0.
|
|
3438
|
+
version = "0.20.0"
|
|
3367
3439
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3368
|
-
checksum = "
|
|
3440
|
+
checksum = "b39321327e8c69be751b2791eba7f48a8038b8b5b329c7d98287b6607205f7fd"
|
|
3369
3441
|
dependencies = [
|
|
3370
3442
|
"anyhow",
|
|
3371
3443
|
"http",
|
|
@@ -3384,9 +3456,9 @@ dependencies = [
|
|
|
3384
3456
|
|
|
3385
3457
|
[[package]]
|
|
3386
3458
|
name = "qcs-dependencies-client"
|
|
3387
|
-
version = "0.
|
|
3459
|
+
version = "0.5.2"
|
|
3388
3460
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3389
|
-
checksum = "
|
|
3461
|
+
checksum = "594d8244e2e6408f80907ae82e49caebb3e5783e5e1512eb24bf87f10c081e2a"
|
|
3390
3462
|
dependencies = [
|
|
3391
3463
|
"http",
|
|
3392
3464
|
"opentelemetry",
|
|
@@ -3415,14 +3487,17 @@ dependencies = [
|
|
|
3415
3487
|
|
|
3416
3488
|
[[package]]
|
|
3417
3489
|
name = "quil-rs"
|
|
3418
|
-
version = "0.
|
|
3490
|
+
version = "0.37.2"
|
|
3419
3491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3420
|
-
checksum = "
|
|
3492
|
+
checksum = "ab2279547bc521362a1ed413e1ad379de23d0efc4ae28f427a4184c8c390ee25"
|
|
3421
3493
|
dependencies = [
|
|
3494
|
+
"anyhow",
|
|
3422
3495
|
"approx",
|
|
3496
|
+
"derive-where",
|
|
3497
|
+
"derive_more",
|
|
3423
3498
|
"indexmap 2.13.0",
|
|
3424
3499
|
"internment",
|
|
3425
|
-
"itertools 0.
|
|
3500
|
+
"itertools 0.14.0",
|
|
3426
3501
|
"lexical",
|
|
3427
3502
|
"ndarray",
|
|
3428
3503
|
"nom",
|
|
@@ -3430,18 +3505,18 @@ dependencies = [
|
|
|
3430
3505
|
"num-complex",
|
|
3431
3506
|
"numpy",
|
|
3432
3507
|
"once_cell",
|
|
3433
|
-
"optipy",
|
|
3434
|
-
"
|
|
3508
|
+
"optipy 0.1.4",
|
|
3509
|
+
"pastey",
|
|
3435
3510
|
"petgraph 0.6.5",
|
|
3436
3511
|
"pyo3",
|
|
3437
3512
|
"pyo3-build-config",
|
|
3438
3513
|
"pyo3-stub-gen",
|
|
3439
3514
|
"regex",
|
|
3440
|
-
"rigetti-pyo3",
|
|
3515
|
+
"rigetti-pyo3 0.7.1",
|
|
3441
3516
|
"serde",
|
|
3442
3517
|
"statrs",
|
|
3443
3518
|
"strum",
|
|
3444
|
-
"thiserror
|
|
3519
|
+
"thiserror 2.0.20",
|
|
3445
3520
|
]
|
|
3446
3521
|
|
|
3447
3522
|
[[package]]
|
|
@@ -3458,7 +3533,7 @@ dependencies = [
|
|
|
3458
3533
|
"rustc-hash 2.1.1",
|
|
3459
3534
|
"rustls",
|
|
3460
3535
|
"socket2",
|
|
3461
|
-
"thiserror 2.0.
|
|
3536
|
+
"thiserror 2.0.20",
|
|
3462
3537
|
"tokio",
|
|
3463
3538
|
"tracing",
|
|
3464
3539
|
"web-time",
|
|
@@ -3480,7 +3555,7 @@ dependencies = [
|
|
|
3480
3555
|
"rustls",
|
|
3481
3556
|
"rustls-pki-types",
|
|
3482
3557
|
"slab",
|
|
3483
|
-
"thiserror 2.0.
|
|
3558
|
+
"thiserror 2.0.20",
|
|
3484
3559
|
"tinyvec",
|
|
3485
3560
|
"tracing",
|
|
3486
3561
|
"web-time",
|
|
@@ -3515,6 +3590,12 @@ version = "5.3.0"
|
|
|
3515
3590
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3516
3591
|
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
3517
3592
|
|
|
3593
|
+
[[package]]
|
|
3594
|
+
name = "r-efi"
|
|
3595
|
+
version = "6.0.0"
|
|
3596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3597
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
3598
|
+
|
|
3518
3599
|
[[package]]
|
|
3519
3600
|
name = "rand"
|
|
3520
3601
|
version = "0.8.5"
|
|
@@ -3536,6 +3617,17 @@ dependencies = [
|
|
|
3536
3617
|
"rand_core 0.9.5",
|
|
3537
3618
|
]
|
|
3538
3619
|
|
|
3620
|
+
[[package]]
|
|
3621
|
+
name = "rand"
|
|
3622
|
+
version = "0.10.2"
|
|
3623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3624
|
+
checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
|
|
3625
|
+
dependencies = [
|
|
3626
|
+
"chacha20",
|
|
3627
|
+
"getrandom 0.4.3",
|
|
3628
|
+
"rand_core 0.10.1",
|
|
3629
|
+
]
|
|
3630
|
+
|
|
3539
3631
|
[[package]]
|
|
3540
3632
|
name = "rand_chacha"
|
|
3541
3633
|
version = "0.3.1"
|
|
@@ -3575,14 +3667,10 @@ dependencies = [
|
|
|
3575
3667
|
]
|
|
3576
3668
|
|
|
3577
3669
|
[[package]]
|
|
3578
|
-
name = "
|
|
3579
|
-
version = "0.
|
|
3670
|
+
name = "rand_core"
|
|
3671
|
+
version = "0.10.1"
|
|
3580
3672
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3581
|
-
checksum = "
|
|
3582
|
-
dependencies = [
|
|
3583
|
-
"num-traits",
|
|
3584
|
-
"rand 0.8.5",
|
|
3585
|
-
]
|
|
3673
|
+
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
|
|
3586
3674
|
|
|
3587
3675
|
[[package]]
|
|
3588
3676
|
name = "rand_xorshift"
|
|
@@ -3784,7 +3872,7 @@ dependencies = [
|
|
|
3784
3872
|
"http",
|
|
3785
3873
|
"reqwest 0.13.3",
|
|
3786
3874
|
"serde",
|
|
3787
|
-
"thiserror 2.0.
|
|
3875
|
+
"thiserror 2.0.20",
|
|
3788
3876
|
"tower-service",
|
|
3789
3877
|
]
|
|
3790
3878
|
|
|
@@ -3827,13 +3915,27 @@ dependencies = [
|
|
|
3827
3915
|
|
|
3828
3916
|
[[package]]
|
|
3829
3917
|
name = "rigetti-pyo3"
|
|
3830
|
-
version = "0.
|
|
3918
|
+
version = "0.7.1"
|
|
3919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3920
|
+
checksum = "213e90a6c913d2826aa2b14c0a267c0bd784e586f108319066fdd42834abf325"
|
|
3921
|
+
dependencies = [
|
|
3922
|
+
"indexmap 2.13.0",
|
|
3923
|
+
"itertools 0.14.0",
|
|
3924
|
+
"optipy 0.1.4",
|
|
3925
|
+
"pastey",
|
|
3926
|
+
"pyo3",
|
|
3927
|
+
"pyo3-stub-gen",
|
|
3928
|
+
]
|
|
3929
|
+
|
|
3930
|
+
[[package]]
|
|
3931
|
+
name = "rigetti-pyo3"
|
|
3932
|
+
version = "0.8.1"
|
|
3831
3933
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3832
|
-
checksum = "
|
|
3934
|
+
checksum = "54283d7a88051a30fd1d508c22a1c5bca9b74ef9572d1e43ee707c5f8417e3d0"
|
|
3833
3935
|
dependencies = [
|
|
3834
3936
|
"indexmap 2.13.0",
|
|
3835
3937
|
"itertools 0.14.0",
|
|
3836
|
-
"optipy",
|
|
3938
|
+
"optipy 0.2.1",
|
|
3837
3939
|
"pastey",
|
|
3838
3940
|
"pyo3",
|
|
3839
3941
|
"pyo3-async-runtimes",
|
|
@@ -4004,7 +4106,7 @@ checksum = "26d1e2536ce4f35f4846aa13bff16bd0ff40157cdb14cc056c7b14ba41233ba0"
|
|
|
4004
4106
|
dependencies = [
|
|
4005
4107
|
"core-foundation 0.10.1",
|
|
4006
4108
|
"core-foundation-sys",
|
|
4007
|
-
"jni
|
|
4109
|
+
"jni",
|
|
4008
4110
|
"log",
|
|
4009
4111
|
"once_cell",
|
|
4010
4112
|
"rustls",
|
|
@@ -4106,9 +4208,9 @@ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
|
4106
4208
|
|
|
4107
4209
|
[[package]]
|
|
4108
4210
|
name = "safe_arch"
|
|
4109
|
-
version = "
|
|
4211
|
+
version = "1.2.0"
|
|
4110
4212
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4111
|
-
checksum = "
|
|
4213
|
+
checksum = "42c6efa15875e6ecb39ca61fb0b0c1a40b84fac5a5ffe71eef7d1000c8eb3f5f"
|
|
4112
4214
|
dependencies = [
|
|
4113
4215
|
"bytemuck",
|
|
4114
4216
|
]
|
|
@@ -4289,9 +4391,9 @@ dependencies = [
|
|
|
4289
4391
|
|
|
4290
4392
|
[[package]]
|
|
4291
4393
|
name = "serde_spanned"
|
|
4292
|
-
version = "1.
|
|
4394
|
+
version = "1.1.1"
|
|
4293
4395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4294
|
-
checksum = "
|
|
4396
|
+
checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
|
|
4295
4397
|
dependencies = [
|
|
4296
4398
|
"serde_core",
|
|
4297
4399
|
]
|
|
@@ -4346,7 +4448,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4346
4448
|
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
4347
4449
|
dependencies = [
|
|
4348
4450
|
"cfg-if",
|
|
4349
|
-
"cpufeatures",
|
|
4451
|
+
"cpufeatures 0.2.17",
|
|
4350
4452
|
"digest",
|
|
4351
4453
|
]
|
|
4352
4454
|
|
|
@@ -4357,7 +4459,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4357
4459
|
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
4358
4460
|
dependencies = [
|
|
4359
4461
|
"cfg-if",
|
|
4360
|
-
"cpufeatures",
|
|
4462
|
+
"cpufeatures 0.2.17",
|
|
4361
4463
|
"digest",
|
|
4362
4464
|
]
|
|
4363
4465
|
|
|
@@ -4404,14 +4506,13 @@ dependencies = [
|
|
|
4404
4506
|
|
|
4405
4507
|
[[package]]
|
|
4406
4508
|
name = "simba"
|
|
4407
|
-
version = "0.
|
|
4509
|
+
version = "0.10.2"
|
|
4408
4510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4409
|
-
checksum = "
|
|
4511
|
+
checksum = "f1a7200d82ff1c7b4235efd12f11e2537a402c91cf83a5cb97ce80eef787fde7"
|
|
4410
4512
|
dependencies = [
|
|
4411
4513
|
"approx",
|
|
4412
4514
|
"num-complex",
|
|
4413
4515
|
"num-traits",
|
|
4414
|
-
"paste",
|
|
4415
4516
|
"wide",
|
|
4416
4517
|
]
|
|
4417
4518
|
|
|
@@ -4451,7 +4552,7 @@ checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb"
|
|
|
4451
4552
|
dependencies = [
|
|
4452
4553
|
"num-bigint",
|
|
4453
4554
|
"num-traits",
|
|
4454
|
-
"thiserror 2.0.
|
|
4555
|
+
"thiserror 2.0.20",
|
|
4455
4556
|
"time",
|
|
4456
4557
|
]
|
|
4457
4558
|
|
|
@@ -4523,15 +4624,15 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
|
4523
4624
|
|
|
4524
4625
|
[[package]]
|
|
4525
4626
|
name = "statrs"
|
|
4526
|
-
version = "0.
|
|
4627
|
+
version = "0.19.1"
|
|
4527
4628
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4528
|
-
checksum = "
|
|
4629
|
+
checksum = "c1837f9a1bd13dabbdbb04489c39451482d3cdd35a6e1a0d0f3570dea2b8c8be"
|
|
4529
4630
|
dependencies = [
|
|
4530
4631
|
"approx",
|
|
4531
|
-
"lazy_static",
|
|
4532
4632
|
"nalgebra",
|
|
4533
4633
|
"num-traits",
|
|
4534
|
-
"rand 0.
|
|
4634
|
+
"rand 0.10.2",
|
|
4635
|
+
"thiserror 2.0.20",
|
|
4535
4636
|
]
|
|
4536
4637
|
|
|
4537
4638
|
[[package]]
|
|
@@ -4596,6 +4697,17 @@ dependencies = [
|
|
|
4596
4697
|
"unicode-ident",
|
|
4597
4698
|
]
|
|
4598
4699
|
|
|
4700
|
+
[[package]]
|
|
4701
|
+
name = "syn"
|
|
4702
|
+
version = "3.0.4"
|
|
4703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4704
|
+
checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
|
|
4705
|
+
dependencies = [
|
|
4706
|
+
"proc-macro2",
|
|
4707
|
+
"quote",
|
|
4708
|
+
"unicode-ident",
|
|
4709
|
+
]
|
|
4710
|
+
|
|
4599
4711
|
[[package]]
|
|
4600
4712
|
name = "sync_wrapper"
|
|
4601
4713
|
version = "1.0.2"
|
|
@@ -4719,11 +4831,11 @@ dependencies = [
|
|
|
4719
4831
|
|
|
4720
4832
|
[[package]]
|
|
4721
4833
|
name = "thiserror"
|
|
4722
|
-
version = "2.0.
|
|
4834
|
+
version = "2.0.20"
|
|
4723
4835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4724
|
-
checksum = "
|
|
4836
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
4725
4837
|
dependencies = [
|
|
4726
|
-
"thiserror-impl 2.0.
|
|
4838
|
+
"thiserror-impl 2.0.20",
|
|
4727
4839
|
]
|
|
4728
4840
|
|
|
4729
4841
|
[[package]]
|
|
@@ -4739,13 +4851,13 @@ dependencies = [
|
|
|
4739
4851
|
|
|
4740
4852
|
[[package]]
|
|
4741
4853
|
name = "thiserror-impl"
|
|
4742
|
-
version = "2.0.
|
|
4854
|
+
version = "2.0.20"
|
|
4743
4855
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4744
|
-
checksum = "
|
|
4856
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
4745
4857
|
dependencies = [
|
|
4746
4858
|
"proc-macro2",
|
|
4747
4859
|
"quote",
|
|
4748
|
-
"syn
|
|
4860
|
+
"syn 3.0.4",
|
|
4749
4861
|
]
|
|
4750
4862
|
|
|
4751
4863
|
[[package]]
|
|
@@ -4927,13 +5039,28 @@ checksum = "f3afc9a848309fe1aaffaed6e1546a7a14de1f935dc9d89d32afd9a44bab7c46"
|
|
|
4927
5039
|
dependencies = [
|
|
4928
5040
|
"indexmap 2.13.0",
|
|
4929
5041
|
"serde_core",
|
|
4930
|
-
"serde_spanned 1.
|
|
5042
|
+
"serde_spanned 1.1.1",
|
|
4931
5043
|
"toml_datetime 0.7.5+spec-1.1.0",
|
|
4932
5044
|
"toml_parser",
|
|
4933
5045
|
"toml_writer",
|
|
4934
5046
|
"winnow 0.7.14",
|
|
4935
5047
|
]
|
|
4936
5048
|
|
|
5049
|
+
[[package]]
|
|
5050
|
+
name = "toml"
|
|
5051
|
+
version = "1.1.4+spec-1.1.0"
|
|
5052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5053
|
+
checksum = "3aace63f4bbcdfc2c965b059de67119c89c4017a70d633be6c104910f67056f5"
|
|
5054
|
+
dependencies = [
|
|
5055
|
+
"indexmap 2.13.0",
|
|
5056
|
+
"serde_core",
|
|
5057
|
+
"serde_spanned 1.1.1",
|
|
5058
|
+
"toml_datetime 1.1.1+spec-1.1.0",
|
|
5059
|
+
"toml_parser",
|
|
5060
|
+
"toml_writer",
|
|
5061
|
+
"winnow 1.0.4",
|
|
5062
|
+
]
|
|
5063
|
+
|
|
4937
5064
|
[[package]]
|
|
4938
5065
|
name = "toml_datetime"
|
|
4939
5066
|
version = "0.6.11"
|
|
@@ -4952,6 +5079,15 @@ dependencies = [
|
|
|
4952
5079
|
"serde_core",
|
|
4953
5080
|
]
|
|
4954
5081
|
|
|
5082
|
+
[[package]]
|
|
5083
|
+
name = "toml_datetime"
|
|
5084
|
+
version = "1.1.1+spec-1.1.0"
|
|
5085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5086
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
5087
|
+
dependencies = [
|
|
5088
|
+
"serde_core",
|
|
5089
|
+
]
|
|
5090
|
+
|
|
4955
5091
|
[[package]]
|
|
4956
5092
|
name = "toml_edit"
|
|
4957
5093
|
version = "0.19.15"
|
|
@@ -4994,11 +5130,11 @@ dependencies = [
|
|
|
4994
5130
|
|
|
4995
5131
|
[[package]]
|
|
4996
5132
|
name = "toml_parser"
|
|
4997
|
-
version = "1.
|
|
5133
|
+
version = "1.1.3+spec-1.1.0"
|
|
4998
5134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4999
|
-
checksum = "
|
|
5135
|
+
checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
|
|
5000
5136
|
dependencies = [
|
|
5001
|
-
"winnow 0.
|
|
5137
|
+
"winnow 1.0.4",
|
|
5002
5138
|
]
|
|
5003
5139
|
|
|
5004
5140
|
[[package]]
|
|
@@ -5009,9 +5145,9 @@ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
|
5009
5145
|
|
|
5010
5146
|
[[package]]
|
|
5011
5147
|
name = "toml_writer"
|
|
5012
|
-
version = "1.
|
|
5148
|
+
version = "1.1.2+spec-1.1.0"
|
|
5013
5149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5014
|
-
checksum = "
|
|
5150
|
+
checksum = "7d56353a2a665ad0f41a421187180aab746c8c325620617ad883a99a1cbe66d2"
|
|
5015
5151
|
|
|
5016
5152
|
[[package]]
|
|
5017
5153
|
name = "tonic"
|
|
@@ -5150,6 +5286,7 @@ dependencies = [
|
|
|
5150
5286
|
"tower-layer",
|
|
5151
5287
|
"tower-service",
|
|
5152
5288
|
"tracing",
|
|
5289
|
+
"uuid",
|
|
5153
5290
|
]
|
|
5154
5291
|
|
|
5155
5292
|
[[package]]
|
|
@@ -5352,12 +5489,24 @@ version = "1.0.24"
|
|
|
5352
5489
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5353
5490
|
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
5354
5491
|
|
|
5492
|
+
[[package]]
|
|
5493
|
+
name = "unicode-segmentation"
|
|
5494
|
+
version = "1.13.3"
|
|
5495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5496
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
5497
|
+
|
|
5355
5498
|
[[package]]
|
|
5356
5499
|
name = "unicode-width"
|
|
5357
5500
|
version = "0.2.2"
|
|
5358
5501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5359
5502
|
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
5360
5503
|
|
|
5504
|
+
[[package]]
|
|
5505
|
+
name = "unicode-xid"
|
|
5506
|
+
version = "0.2.6"
|
|
5507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5508
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
5509
|
+
|
|
5361
5510
|
[[package]]
|
|
5362
5511
|
name = "unicode_names2"
|
|
5363
5512
|
version = "1.3.0"
|
|
@@ -5380,12 +5529,6 @@ dependencies = [
|
|
|
5380
5529
|
"rand 0.8.5",
|
|
5381
5530
|
]
|
|
5382
5531
|
|
|
5383
|
-
[[package]]
|
|
5384
|
-
name = "unindent"
|
|
5385
|
-
version = "0.2.4"
|
|
5386
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5387
|
-
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
5388
|
-
|
|
5389
5532
|
[[package]]
|
|
5390
5533
|
name = "untrusted"
|
|
5391
5534
|
version = "0.7.1"
|
|
@@ -5413,9 +5556,9 @@ dependencies = [
|
|
|
5413
5556
|
|
|
5414
5557
|
[[package]]
|
|
5415
5558
|
name = "urlpattern"
|
|
5416
|
-
version = "0.
|
|
5559
|
+
version = "0.6.0"
|
|
5417
5560
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5418
|
-
checksum = "
|
|
5561
|
+
checksum = "df16f50ef4cc145211879a3867ba757076b25dfee812040dcb0658bd9ae7904b"
|
|
5419
5562
|
dependencies = [
|
|
5420
5563
|
"icu_properties",
|
|
5421
5564
|
"regex",
|
|
@@ -5621,15 +5764,15 @@ dependencies = [
|
|
|
5621
5764
|
|
|
5622
5765
|
[[package]]
|
|
5623
5766
|
name = "webbrowser"
|
|
5624
|
-
version = "1.
|
|
5767
|
+
version = "1.2.4"
|
|
5625
5768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5626
|
-
checksum = "
|
|
5769
|
+
checksum = "62c35be770821a214dbc362fc26908c853e776c0004294d0b10b8a6bad582f94"
|
|
5627
5770
|
dependencies = [
|
|
5628
|
-
"
|
|
5629
|
-
"jni 0.21.1",
|
|
5771
|
+
"jni",
|
|
5630
5772
|
"log",
|
|
5631
5773
|
"ndk-context",
|
|
5632
5774
|
"objc2",
|
|
5775
|
+
"objc2-app-kit",
|
|
5633
5776
|
"objc2-foundation",
|
|
5634
5777
|
"url",
|
|
5635
5778
|
"web-sys",
|
|
@@ -5655,9 +5798,9 @@ dependencies = [
|
|
|
5655
5798
|
|
|
5656
5799
|
[[package]]
|
|
5657
5800
|
name = "wide"
|
|
5658
|
-
version = "
|
|
5801
|
+
version = "1.6.1"
|
|
5659
5802
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5660
|
-
checksum = "
|
|
5803
|
+
checksum = "de2aaf408e58689c2096682331b1f42bb2d9f2ed6b11560407d023cd0a6c634e"
|
|
5661
5804
|
dependencies = [
|
|
5662
5805
|
"bytemuck",
|
|
5663
5806
|
"safe_arch",
|
|
@@ -5742,15 +5885,6 @@ dependencies = [
|
|
|
5742
5885
|
"windows-link",
|
|
5743
5886
|
]
|
|
5744
5887
|
|
|
5745
|
-
[[package]]
|
|
5746
|
-
name = "windows-sys"
|
|
5747
|
-
version = "0.45.0"
|
|
5748
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5749
|
-
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
5750
|
-
dependencies = [
|
|
5751
|
-
"windows-targets 0.42.2",
|
|
5752
|
-
]
|
|
5753
|
-
|
|
5754
5888
|
[[package]]
|
|
5755
5889
|
name = "windows-sys"
|
|
5756
5890
|
version = "0.48.0"
|
|
@@ -5787,21 +5921,6 @@ dependencies = [
|
|
|
5787
5921
|
"windows-link",
|
|
5788
5922
|
]
|
|
5789
5923
|
|
|
5790
|
-
[[package]]
|
|
5791
|
-
name = "windows-targets"
|
|
5792
|
-
version = "0.42.2"
|
|
5793
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5794
|
-
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
5795
|
-
dependencies = [
|
|
5796
|
-
"windows_aarch64_gnullvm 0.42.2",
|
|
5797
|
-
"windows_aarch64_msvc 0.42.2",
|
|
5798
|
-
"windows_i686_gnu 0.42.2",
|
|
5799
|
-
"windows_i686_msvc 0.42.2",
|
|
5800
|
-
"windows_x86_64_gnu 0.42.2",
|
|
5801
|
-
"windows_x86_64_gnullvm 0.42.2",
|
|
5802
|
-
"windows_x86_64_msvc 0.42.2",
|
|
5803
|
-
]
|
|
5804
|
-
|
|
5805
5924
|
[[package]]
|
|
5806
5925
|
name = "windows-targets"
|
|
5807
5926
|
version = "0.48.5"
|
|
@@ -5833,12 +5952,6 @@ dependencies = [
|
|
|
5833
5952
|
"windows_x86_64_msvc 0.52.6",
|
|
5834
5953
|
]
|
|
5835
5954
|
|
|
5836
|
-
[[package]]
|
|
5837
|
-
name = "windows_aarch64_gnullvm"
|
|
5838
|
-
version = "0.42.2"
|
|
5839
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5840
|
-
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
5841
|
-
|
|
5842
5955
|
[[package]]
|
|
5843
5956
|
name = "windows_aarch64_gnullvm"
|
|
5844
5957
|
version = "0.48.5"
|
|
@@ -5851,12 +5964,6 @@ version = "0.52.6"
|
|
|
5851
5964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5852
5965
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
5853
5966
|
|
|
5854
|
-
[[package]]
|
|
5855
|
-
name = "windows_aarch64_msvc"
|
|
5856
|
-
version = "0.42.2"
|
|
5857
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5858
|
-
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
5859
|
-
|
|
5860
5967
|
[[package]]
|
|
5861
5968
|
name = "windows_aarch64_msvc"
|
|
5862
5969
|
version = "0.48.5"
|
|
@@ -5869,12 +5976,6 @@ version = "0.52.6"
|
|
|
5869
5976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5870
5977
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
5871
5978
|
|
|
5872
|
-
[[package]]
|
|
5873
|
-
name = "windows_i686_gnu"
|
|
5874
|
-
version = "0.42.2"
|
|
5875
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5876
|
-
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
5877
|
-
|
|
5878
5979
|
[[package]]
|
|
5879
5980
|
name = "windows_i686_gnu"
|
|
5880
5981
|
version = "0.48.5"
|
|
@@ -5893,12 +5994,6 @@ version = "0.52.6"
|
|
|
5893
5994
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5894
5995
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
5895
5996
|
|
|
5896
|
-
[[package]]
|
|
5897
|
-
name = "windows_i686_msvc"
|
|
5898
|
-
version = "0.42.2"
|
|
5899
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5900
|
-
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
5901
|
-
|
|
5902
5997
|
[[package]]
|
|
5903
5998
|
name = "windows_i686_msvc"
|
|
5904
5999
|
version = "0.48.5"
|
|
@@ -5911,12 +6006,6 @@ version = "0.52.6"
|
|
|
5911
6006
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5912
6007
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
5913
6008
|
|
|
5914
|
-
[[package]]
|
|
5915
|
-
name = "windows_x86_64_gnu"
|
|
5916
|
-
version = "0.42.2"
|
|
5917
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5918
|
-
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
5919
|
-
|
|
5920
6009
|
[[package]]
|
|
5921
6010
|
name = "windows_x86_64_gnu"
|
|
5922
6011
|
version = "0.48.5"
|
|
@@ -5929,12 +6018,6 @@ version = "0.52.6"
|
|
|
5929
6018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5930
6019
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
5931
6020
|
|
|
5932
|
-
[[package]]
|
|
5933
|
-
name = "windows_x86_64_gnullvm"
|
|
5934
|
-
version = "0.42.2"
|
|
5935
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5936
|
-
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
5937
|
-
|
|
5938
6021
|
[[package]]
|
|
5939
6022
|
name = "windows_x86_64_gnullvm"
|
|
5940
6023
|
version = "0.48.5"
|
|
@@ -5947,12 +6030,6 @@ version = "0.52.6"
|
|
|
5947
6030
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5948
6031
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
5949
6032
|
|
|
5950
|
-
[[package]]
|
|
5951
|
-
name = "windows_x86_64_msvc"
|
|
5952
|
-
version = "0.42.2"
|
|
5953
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5954
|
-
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
5955
|
-
|
|
5956
6033
|
[[package]]
|
|
5957
6034
|
name = "windows_x86_64_msvc"
|
|
5958
6035
|
version = "0.48.5"
|
|
@@ -5983,6 +6060,12 @@ dependencies = [
|
|
|
5983
6060
|
"memchr",
|
|
5984
6061
|
]
|
|
5985
6062
|
|
|
6063
|
+
[[package]]
|
|
6064
|
+
name = "winnow"
|
|
6065
|
+
version = "1.0.4"
|
|
6066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6067
|
+
checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
|
|
6068
|
+
|
|
5986
6069
|
[[package]]
|
|
5987
6070
|
name = "wit-bindgen"
|
|
5988
6071
|
version = "0.51.0"
|