qcs-sdk-python-grpc-web 0.18.0__tar.gz → 0.19.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/Cargo.lock +253 -73
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/Cargo.toml +3 -3
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/PKG-INFO +1 -1
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/CHANGELOG.md +12 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/Cargo.toml +1 -1
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/examples/delayed_job_retrieval.rs +1 -1
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/examples/execute.rs +1 -1
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/examples/local.rs +1 -1
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/examples/parametric_compilation.rs +1 -1
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/examples/quil_t.rs +1 -1
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/client.rs +27 -19
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/compiler/quilc.rs +2 -2
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/diagnostics.rs +1 -1
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/executable.rs +10 -10
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/qpu/api.rs +5 -5
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/qvm/execution.rs +1 -1
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/tests/basic_qvm.rs +3 -3
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/tests/mocked_qpu.rs +1 -1
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/tests/parametric_compilation.rs +2 -2
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/tests/qvm_api.rs +1 -1
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/CHANGELOG.md +12 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/Cargo.toml +1 -1
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/client.pyi +6 -16
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/src/client.rs +62 -63
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/src/qpu/api.rs +5 -5
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/src/qpu/isa.rs +1 -1
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/src/qpu/mod.rs +1 -1
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/src/qpu/translation.rs +2 -2
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/tests/test_client.py +5 -4
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/pyproject.toml +2 -2
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/client.pyi +6 -16
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/README.md +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/Makefile.toml +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/README.md +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/build.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/examples/libquil.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/bin/diagnostics.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/compiler/isa/edge.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/compiler/isa/mod.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/compiler/isa/operator.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/compiler/isa/qubit.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/compiler/libquil.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/compiler/mod.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/compiler/rpcq.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/execution_data.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/lib.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/qpu/execution.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/qpu/mod.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/qpu/result_data.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_allocates_for_multiple_expressions-2.snap +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_allocates_for_multiple_expressions.snap +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_converts_frequency_expressions-2.snap +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_converts_frequency_expressions.snap +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_converts_phases.snap +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_converts_set_scale_units.snap +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_substitutes_and_reuses_gate_expressions.snap +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/qpu/snapshots/qcs__qpu__rewrite_arithmetic__describe_rewrite_arithmetic__it_substitutes_gate_parameters.snap +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/qpu/translation.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/qvm/http.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/qvm/libquil.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/qvm/mod.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/qvm/snapshots/qcs__qvm__test__apply_valid_parameters_to_program.snap +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/src/register_data.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/tests/aspen_9_isa.json +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/tests/bell_state_response_data.hex +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/tests/compiler-isa-Aspen-8.json +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/tests/qcs-isa-Aspen-8.json +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/tests/qvm_isa.json +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/tests/secrets.toml +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/lib/tests/settings.toml +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/.flake8 +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/.stubtest-allowlist +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/Makefile.toml +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/README.md +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/build.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/poetry.lock +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/_tracing_subscriber/.stubtest-allowlist +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/_tracing_subscriber/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/_tracing_subscriber/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/_tracing_subscriber/layers/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/_tracing_subscriber/layers/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/_tracing_subscriber/layers/file/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/_tracing_subscriber/layers/file/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/_tracing_subscriber/layers/otel_otlp/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/_tracing_subscriber/layers/otel_otlp/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/_tracing_subscriber/layers/otel_otlp_file/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/_tracing_subscriber/layers/otel_otlp_file/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/_tracing_subscriber/subscriber/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/_tracing_subscriber/subscriber/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/client.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/compiler/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/compiler/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/compiler/quilc.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/diagnostics.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/py.typed +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/qpu/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/qpu/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/qpu/api.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/qpu/isa.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/qpu/translation.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/qvm/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/qvm/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/qcs_sdk/qvm/api.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/scripts/patch_grpc_web.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/src/compiler/mod.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/src/compiler/quilc.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/src/executable.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/src/execution_data.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/src/from_py.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/src/grpc/mod.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/src/grpc/models/controller.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/src/grpc/models/mod.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/src/lib.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/src/py_sync.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/src/qpu/result_data.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/src/qvm/api.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/src/qvm/mod.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/src/register_data.rs +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/tests/_fixtures/aspen-m-3.json +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/tests/_fixtures/device-2q.json +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/tests/_qcs_config/secrets.toml +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/tests/_qcs_config/settings.toml +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/tests/compiler/__snapshots__/test_quilc.ambr +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/tests/compiler/test_quilc.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/tests/conftest.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/tests/execution_data/test_execution_data.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/tests/qpu/test_api.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/tests/qpu/test_isa.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/tests/qpu/test_qpu.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/tests/qpu/test_translation.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/tests/qvm/test_qvm.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/tests/test_diagnostics.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/tests/test_executable.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/tests/test_logging.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/crates/python/tests/test_tracing_subscriber.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/_tracing_subscriber/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/_tracing_subscriber/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/_tracing_subscriber/layers/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/_tracing_subscriber/layers/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/_tracing_subscriber/layers/file/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/_tracing_subscriber/layers/file/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/_tracing_subscriber/layers/otel_otlp/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/_tracing_subscriber/layers/otel_otlp/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/_tracing_subscriber/layers/otel_otlp_file/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/_tracing_subscriber/layers/otel_otlp_file/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/_tracing_subscriber/subscriber/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/_tracing_subscriber/subscriber/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/client.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/compiler/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/compiler/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/compiler/quilc.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/diagnostics.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/py.typed +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/qpu/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/qpu/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/qpu/api.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/qpu/isa.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/qpu/translation.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/qvm/__init__.py +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/qvm/__init__.pyi +0 -0
- {qcs_sdk_python_grpc_web-0.18.0 → qcs_sdk_python_grpc_web-0.19.0}/qcs_sdk/qvm/api.pyi +0 -0
|
@@ -66,7 +66,7 @@ dependencies = [
|
|
|
66
66
|
"assert2-macros",
|
|
67
67
|
"diff",
|
|
68
68
|
"is-terminal",
|
|
69
|
-
"yansi",
|
|
69
|
+
"yansi 0.5.1",
|
|
70
70
|
]
|
|
71
71
|
|
|
72
72
|
[[package]]
|
|
@@ -125,6 +125,15 @@ dependencies = [
|
|
|
125
125
|
"syn 2.0.66",
|
|
126
126
|
]
|
|
127
127
|
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "atomic"
|
|
130
|
+
version = "0.6.0"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "8d818003e740b63afc82337e3160717f4f63078720a810b7b903e70a5d1d2994"
|
|
133
|
+
dependencies = [
|
|
134
|
+
"bytemuck",
|
|
135
|
+
]
|
|
136
|
+
|
|
128
137
|
[[package]]
|
|
129
138
|
name = "atty"
|
|
130
139
|
version = "0.2.14"
|
|
@@ -216,12 +225,6 @@ dependencies = [
|
|
|
216
225
|
"rustc-demangle",
|
|
217
226
|
]
|
|
218
227
|
|
|
219
|
-
[[package]]
|
|
220
|
-
name = "base64"
|
|
221
|
-
version = "0.13.1"
|
|
222
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
-
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
224
|
-
|
|
225
228
|
[[package]]
|
|
226
229
|
name = "base64"
|
|
227
230
|
version = "0.21.7"
|
|
@@ -300,6 +303,12 @@ version = "0.6.8"
|
|
|
300
303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
304
|
checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
|
|
302
305
|
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "bytemuck"
|
|
308
|
+
version = "1.16.1"
|
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
+
checksum = "b236fc92302c97ed75b38da1f4917b5cdda4984745740f153a5d3059e48d725e"
|
|
311
|
+
|
|
303
312
|
[[package]]
|
|
304
313
|
name = "byteorder"
|
|
305
314
|
version = "1.5.0"
|
|
@@ -336,7 +345,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
336
345
|
checksum = "b48814962d2fd604c50d2b9433c2a41a0ab567779ee2c02f7fba6eca1221f082"
|
|
337
346
|
dependencies = [
|
|
338
347
|
"cached_proc_macro_types",
|
|
339
|
-
"darling",
|
|
348
|
+
"darling 0.14.4",
|
|
340
349
|
"proc-macro2",
|
|
341
350
|
"quote",
|
|
342
351
|
"syn 1.0.109",
|
|
@@ -552,8 +561,18 @@ version = "0.14.4"
|
|
|
552
561
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
562
|
checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
|
|
554
563
|
dependencies = [
|
|
555
|
-
"darling_core",
|
|
556
|
-
"darling_macro",
|
|
564
|
+
"darling_core 0.14.4",
|
|
565
|
+
"darling_macro 0.14.4",
|
|
566
|
+
]
|
|
567
|
+
|
|
568
|
+
[[package]]
|
|
569
|
+
name = "darling"
|
|
570
|
+
version = "0.20.10"
|
|
571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
|
+
checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
|
|
573
|
+
dependencies = [
|
|
574
|
+
"darling_core 0.20.10",
|
|
575
|
+
"darling_macro 0.20.10",
|
|
557
576
|
]
|
|
558
577
|
|
|
559
578
|
[[package]]
|
|
@@ -570,17 +589,42 @@ dependencies = [
|
|
|
570
589
|
"syn 1.0.109",
|
|
571
590
|
]
|
|
572
591
|
|
|
592
|
+
[[package]]
|
|
593
|
+
name = "darling_core"
|
|
594
|
+
version = "0.20.10"
|
|
595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
|
+
checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
|
|
597
|
+
dependencies = [
|
|
598
|
+
"fnv",
|
|
599
|
+
"ident_case",
|
|
600
|
+
"proc-macro2",
|
|
601
|
+
"quote",
|
|
602
|
+
"strsim 0.11.1",
|
|
603
|
+
"syn 2.0.66",
|
|
604
|
+
]
|
|
605
|
+
|
|
573
606
|
[[package]]
|
|
574
607
|
name = "darling_macro"
|
|
575
608
|
version = "0.14.4"
|
|
576
609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
610
|
checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
|
|
578
611
|
dependencies = [
|
|
579
|
-
"darling_core",
|
|
612
|
+
"darling_core 0.14.4",
|
|
580
613
|
"quote",
|
|
581
614
|
"syn 1.0.109",
|
|
582
615
|
]
|
|
583
616
|
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "darling_macro"
|
|
619
|
+
version = "0.20.10"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
|
|
622
|
+
dependencies = [
|
|
623
|
+
"darling_core 0.20.10",
|
|
624
|
+
"quote",
|
|
625
|
+
"syn 2.0.66",
|
|
626
|
+
]
|
|
627
|
+
|
|
584
628
|
[[package]]
|
|
585
629
|
name = "deranged"
|
|
586
630
|
version = "0.3.11"
|
|
@@ -596,7 +640,16 @@ version = "0.12.0"
|
|
|
596
640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
641
|
checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8"
|
|
598
642
|
dependencies = [
|
|
599
|
-
"derive_builder_macro",
|
|
643
|
+
"derive_builder_macro 0.12.0",
|
|
644
|
+
]
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "derive_builder"
|
|
648
|
+
version = "0.20.0"
|
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
+
checksum = "0350b5cb0331628a5916d6c5c0b72e97393b8b6b03b47a9284f4e7f5a405ffd7"
|
|
651
|
+
dependencies = [
|
|
652
|
+
"derive_builder_macro 0.20.0",
|
|
600
653
|
]
|
|
601
654
|
|
|
602
655
|
[[package]]
|
|
@@ -605,22 +658,44 @@ version = "0.12.0"
|
|
|
605
658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
659
|
checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f"
|
|
607
660
|
dependencies = [
|
|
608
|
-
"darling",
|
|
661
|
+
"darling 0.14.4",
|
|
609
662
|
"proc-macro2",
|
|
610
663
|
"quote",
|
|
611
664
|
"syn 1.0.109",
|
|
612
665
|
]
|
|
613
666
|
|
|
667
|
+
[[package]]
|
|
668
|
+
name = "derive_builder_core"
|
|
669
|
+
version = "0.20.0"
|
|
670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
+
checksum = "d48cda787f839151732d396ac69e3473923d54312c070ee21e9effcaa8ca0b1d"
|
|
672
|
+
dependencies = [
|
|
673
|
+
"darling 0.20.10",
|
|
674
|
+
"proc-macro2",
|
|
675
|
+
"quote",
|
|
676
|
+
"syn 2.0.66",
|
|
677
|
+
]
|
|
678
|
+
|
|
614
679
|
[[package]]
|
|
615
680
|
name = "derive_builder_macro"
|
|
616
681
|
version = "0.12.0"
|
|
617
682
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
683
|
checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e"
|
|
619
684
|
dependencies = [
|
|
620
|
-
"derive_builder_core",
|
|
685
|
+
"derive_builder_core 0.12.0",
|
|
621
686
|
"syn 1.0.109",
|
|
622
687
|
]
|
|
623
688
|
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "derive_builder_macro"
|
|
691
|
+
version = "0.20.0"
|
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
+
checksum = "206868b8242f27cecce124c19fd88157fbd0dd334df2587f36417bafbc85097b"
|
|
694
|
+
dependencies = [
|
|
695
|
+
"derive_builder_core 0.20.0",
|
|
696
|
+
"syn 2.0.66",
|
|
697
|
+
]
|
|
698
|
+
|
|
624
699
|
[[package]]
|
|
625
700
|
name = "derive_more"
|
|
626
701
|
version = "0.99.17"
|
|
@@ -661,6 +736,26 @@ dependencies = [
|
|
|
661
736
|
"walkdir",
|
|
662
737
|
]
|
|
663
738
|
|
|
739
|
+
[[package]]
|
|
740
|
+
name = "dirs"
|
|
741
|
+
version = "4.0.0"
|
|
742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
743
|
+
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
|
|
744
|
+
dependencies = [
|
|
745
|
+
"dirs-sys",
|
|
746
|
+
]
|
|
747
|
+
|
|
748
|
+
[[package]]
|
|
749
|
+
name = "dirs-sys"
|
|
750
|
+
version = "0.3.7"
|
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
+
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
|
|
753
|
+
dependencies = [
|
|
754
|
+
"libc",
|
|
755
|
+
"redox_users",
|
|
756
|
+
"winapi",
|
|
757
|
+
]
|
|
758
|
+
|
|
664
759
|
[[package]]
|
|
665
760
|
name = "displaydoc"
|
|
666
761
|
version = "0.2.4"
|
|
@@ -749,6 +844,20 @@ version = "2.1.0"
|
|
|
749
844
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
845
|
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
|
|
751
846
|
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "figment"
|
|
849
|
+
version = "0.10.19"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "8cb01cd46b0cf372153850f4c6c272d9cbea2da513e07538405148f95bd789f3"
|
|
852
|
+
dependencies = [
|
|
853
|
+
"atomic",
|
|
854
|
+
"pear",
|
|
855
|
+
"serde",
|
|
856
|
+
"toml 0.8.14",
|
|
857
|
+
"uncased",
|
|
858
|
+
"version_check",
|
|
859
|
+
]
|
|
860
|
+
|
|
752
861
|
[[package]]
|
|
753
862
|
name = "fixedbitset"
|
|
754
863
|
version = "0.4.2"
|
|
@@ -1321,6 +1430,12 @@ version = "2.0.5"
|
|
|
1321
1430
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1322
1431
|
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
|
|
1323
1432
|
|
|
1433
|
+
[[package]]
|
|
1434
|
+
name = "inlinable_string"
|
|
1435
|
+
version = "0.1.15"
|
|
1436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1437
|
+
checksum = "c8fae54786f62fb2918dcfae3d568594e50eb9b5c25bf04371af6fe7516452fb"
|
|
1438
|
+
|
|
1324
1439
|
[[package]]
|
|
1325
1440
|
name = "insta"
|
|
1326
1441
|
version = "1.39.0"
|
|
@@ -1409,13 +1524,14 @@ dependencies = [
|
|
|
1409
1524
|
|
|
1410
1525
|
[[package]]
|
|
1411
1526
|
name = "jsonwebtoken"
|
|
1412
|
-
version = "
|
|
1527
|
+
version = "9.3.0"
|
|
1413
1528
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
-
checksum = "
|
|
1529
|
+
checksum = "b9ae10193d25051e74945f1ea2d0b42e03cc3b890f7e4cc5faa44997d808193f"
|
|
1415
1530
|
dependencies = [
|
|
1416
1531
|
"base64 0.21.7",
|
|
1532
|
+
"js-sys",
|
|
1417
1533
|
"pem",
|
|
1418
|
-
"ring
|
|
1534
|
+
"ring",
|
|
1419
1535
|
"serde",
|
|
1420
1536
|
"serde_json",
|
|
1421
1537
|
"simple_asn1",
|
|
@@ -1559,6 +1675,16 @@ dependencies = [
|
|
|
1559
1675
|
"thiserror",
|
|
1560
1676
|
]
|
|
1561
1677
|
|
|
1678
|
+
[[package]]
|
|
1679
|
+
name = "libredox"
|
|
1680
|
+
version = "0.1.3"
|
|
1681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1682
|
+
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
|
|
1683
|
+
dependencies = [
|
|
1684
|
+
"bitflags 2.5.0",
|
|
1685
|
+
"libc",
|
|
1686
|
+
]
|
|
1687
|
+
|
|
1562
1688
|
[[package]]
|
|
1563
1689
|
name = "linked-hash-map"
|
|
1564
1690
|
version = "0.5.6"
|
|
@@ -2103,6 +2229,29 @@ dependencies = [
|
|
|
2103
2229
|
"serde",
|
|
2104
2230
|
]
|
|
2105
2231
|
|
|
2232
|
+
[[package]]
|
|
2233
|
+
name = "pear"
|
|
2234
|
+
version = "0.2.9"
|
|
2235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2236
|
+
checksum = "bdeeaa00ce488657faba8ebf44ab9361f9365a97bd39ffb8a60663f57ff4b467"
|
|
2237
|
+
dependencies = [
|
|
2238
|
+
"inlinable_string",
|
|
2239
|
+
"pear_codegen",
|
|
2240
|
+
"yansi 1.0.1",
|
|
2241
|
+
]
|
|
2242
|
+
|
|
2243
|
+
[[package]]
|
|
2244
|
+
name = "pear_codegen"
|
|
2245
|
+
version = "0.2.9"
|
|
2246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2247
|
+
checksum = "4bab5b985dc082b345f812b7df84e1bef27e7207b39e448439ba8bd69c93f147"
|
|
2248
|
+
dependencies = [
|
|
2249
|
+
"proc-macro2",
|
|
2250
|
+
"proc-macro2-diagnostics",
|
|
2251
|
+
"quote",
|
|
2252
|
+
"syn 2.0.66",
|
|
2253
|
+
]
|
|
2254
|
+
|
|
2106
2255
|
[[package]]
|
|
2107
2256
|
name = "peeking_take_while"
|
|
2108
2257
|
version = "0.1.2"
|
|
@@ -2111,11 +2260,12 @@ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
|
|
2111
2260
|
|
|
2112
2261
|
[[package]]
|
|
2113
2262
|
name = "pem"
|
|
2114
|
-
version = "
|
|
2263
|
+
version = "3.0.4"
|
|
2115
2264
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2116
|
-
checksum = "
|
|
2265
|
+
checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae"
|
|
2117
2266
|
dependencies = [
|
|
2118
|
-
"base64 0.
|
|
2267
|
+
"base64 0.22.1",
|
|
2268
|
+
"serde",
|
|
2119
2269
|
]
|
|
2120
2270
|
|
|
2121
2271
|
[[package]]
|
|
@@ -2254,6 +2404,19 @@ dependencies = [
|
|
|
2254
2404
|
"unicode-ident",
|
|
2255
2405
|
]
|
|
2256
2406
|
|
|
2407
|
+
[[package]]
|
|
2408
|
+
name = "proc-macro2-diagnostics"
|
|
2409
|
+
version = "0.10.1"
|
|
2410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2411
|
+
checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
|
|
2412
|
+
dependencies = [
|
|
2413
|
+
"proc-macro2",
|
|
2414
|
+
"quote",
|
|
2415
|
+
"syn 2.0.66",
|
|
2416
|
+
"version_check",
|
|
2417
|
+
"yansi 1.0.1",
|
|
2418
|
+
]
|
|
2419
|
+
|
|
2257
2420
|
[[package]]
|
|
2258
2421
|
name = "prost"
|
|
2259
2422
|
version = "0.12.6"
|
|
@@ -2444,13 +2607,13 @@ dependencies = [
|
|
|
2444
2607
|
|
|
2445
2608
|
[[package]]
|
|
2446
2609
|
name = "qcs"
|
|
2447
|
-
version = "0.
|
|
2610
|
+
version = "0.23.0"
|
|
2448
2611
|
dependencies = [
|
|
2449
2612
|
"assert2",
|
|
2450
2613
|
"async-trait",
|
|
2451
2614
|
"built",
|
|
2452
2615
|
"cached",
|
|
2453
|
-
"derive_builder",
|
|
2616
|
+
"derive_builder 0.12.0",
|
|
2454
2617
|
"enum-as-inner",
|
|
2455
2618
|
"erased-serde",
|
|
2456
2619
|
"float-cmp",
|
|
@@ -2506,22 +2669,25 @@ dependencies = [
|
|
|
2506
2669
|
|
|
2507
2670
|
[[package]]
|
|
2508
2671
|
name = "qcs-api-client-common"
|
|
2509
|
-
version = "0.
|
|
2672
|
+
version = "0.8.4"
|
|
2510
2673
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2511
|
-
checksum = "
|
|
2674
|
+
checksum = "040552f233992abe94376304cf17dab2d79ff62d4a9ee986d75efe3d19337f57"
|
|
2512
2675
|
dependencies = [
|
|
2513
2676
|
"async-trait",
|
|
2514
2677
|
"backoff",
|
|
2678
|
+
"derive_builder 0.20.0",
|
|
2679
|
+
"figment",
|
|
2515
2680
|
"futures",
|
|
2516
2681
|
"home",
|
|
2517
2682
|
"http",
|
|
2518
2683
|
"jsonwebtoken",
|
|
2519
2684
|
"reqwest",
|
|
2520
2685
|
"serde",
|
|
2686
|
+
"shellexpand",
|
|
2521
2687
|
"thiserror",
|
|
2522
2688
|
"time",
|
|
2523
2689
|
"tokio",
|
|
2524
|
-
"toml 0.
|
|
2690
|
+
"toml 0.8.14",
|
|
2525
2691
|
"tracing",
|
|
2526
2692
|
"url",
|
|
2527
2693
|
"urlpattern",
|
|
@@ -2529,9 +2695,9 @@ dependencies = [
|
|
|
2529
2695
|
|
|
2530
2696
|
[[package]]
|
|
2531
2697
|
name = "qcs-api-client-grpc"
|
|
2532
|
-
version = "0.
|
|
2698
|
+
version = "0.8.4"
|
|
2533
2699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2534
|
-
checksum = "
|
|
2700
|
+
checksum = "eb755cd59b1b3ce99abe52ff6898ad74ca26463e94300c103cafaac4f345c4f3"
|
|
2535
2701
|
dependencies = [
|
|
2536
2702
|
"backoff",
|
|
2537
2703
|
"http",
|
|
@@ -2562,9 +2728,9 @@ dependencies = [
|
|
|
2562
2728
|
|
|
2563
2729
|
[[package]]
|
|
2564
2730
|
name = "qcs-api-client-openapi"
|
|
2565
|
-
version = "0.
|
|
2731
|
+
version = "0.9.4"
|
|
2566
2732
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2567
|
-
checksum = "
|
|
2733
|
+
checksum = "008d06c4051dd4b3e7d5b6c1f31457c68384f8f36b05b304de6059bbd81c6128"
|
|
2568
2734
|
dependencies = [
|
|
2569
2735
|
"anyhow",
|
|
2570
2736
|
"qcs-api-client-common",
|
|
@@ -2582,7 +2748,7 @@ dependencies = [
|
|
|
2582
2748
|
|
|
2583
2749
|
[[package]]
|
|
2584
2750
|
name = "qcs-sdk-python-grpc-web"
|
|
2585
|
-
version = "0.
|
|
2751
|
+
version = "0.19.0"
|
|
2586
2752
|
dependencies = [
|
|
2587
2753
|
"async-trait",
|
|
2588
2754
|
"numpy",
|
|
@@ -2710,6 +2876,17 @@ dependencies = [
|
|
|
2710
2876
|
"bitflags 2.5.0",
|
|
2711
2877
|
]
|
|
2712
2878
|
|
|
2879
|
+
[[package]]
|
|
2880
|
+
name = "redox_users"
|
|
2881
|
+
version = "0.4.5"
|
|
2882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2883
|
+
checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891"
|
|
2884
|
+
dependencies = [
|
|
2885
|
+
"getrandom",
|
|
2886
|
+
"libredox",
|
|
2887
|
+
"thiserror",
|
|
2888
|
+
]
|
|
2889
|
+
|
|
2713
2890
|
[[package]]
|
|
2714
2891
|
name = "regex"
|
|
2715
2892
|
version = "1.10.5"
|
|
@@ -2844,21 +3021,6 @@ dependencies = [
|
|
|
2844
3021
|
"time",
|
|
2845
3022
|
]
|
|
2846
3023
|
|
|
2847
|
-
[[package]]
|
|
2848
|
-
name = "ring"
|
|
2849
|
-
version = "0.16.20"
|
|
2850
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2851
|
-
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
|
|
2852
|
-
dependencies = [
|
|
2853
|
-
"cc",
|
|
2854
|
-
"libc",
|
|
2855
|
-
"once_cell",
|
|
2856
|
-
"spin 0.5.2",
|
|
2857
|
-
"untrusted 0.7.1",
|
|
2858
|
-
"web-sys",
|
|
2859
|
-
"winapi",
|
|
2860
|
-
]
|
|
2861
|
-
|
|
2862
3024
|
[[package]]
|
|
2863
3025
|
name = "ring"
|
|
2864
3026
|
version = "0.17.8"
|
|
@@ -2869,8 +3031,8 @@ dependencies = [
|
|
|
2869
3031
|
"cfg-if 1.0.0",
|
|
2870
3032
|
"getrandom",
|
|
2871
3033
|
"libc",
|
|
2872
|
-
"spin
|
|
2873
|
-
"untrusted
|
|
3034
|
+
"spin",
|
|
3035
|
+
"untrusted",
|
|
2874
3036
|
"windows-sys 0.52.0",
|
|
2875
3037
|
]
|
|
2876
3038
|
|
|
@@ -2963,7 +3125,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2963
3125
|
checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
|
|
2964
3126
|
dependencies = [
|
|
2965
3127
|
"log",
|
|
2966
|
-
"ring
|
|
3128
|
+
"ring",
|
|
2967
3129
|
"rustls-webpki 0.101.7",
|
|
2968
3130
|
"sct",
|
|
2969
3131
|
]
|
|
@@ -2975,7 +3137,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2975
3137
|
checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
|
|
2976
3138
|
dependencies = [
|
|
2977
3139
|
"log",
|
|
2978
|
-
"ring
|
|
3140
|
+
"ring",
|
|
2979
3141
|
"rustls-pki-types",
|
|
2980
3142
|
"rustls-webpki 0.102.4",
|
|
2981
3143
|
"subtle",
|
|
@@ -3038,8 +3200,8 @@ version = "0.101.7"
|
|
|
3038
3200
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3039
3201
|
checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
|
|
3040
3202
|
dependencies = [
|
|
3041
|
-
"ring
|
|
3042
|
-
"untrusted
|
|
3203
|
+
"ring",
|
|
3204
|
+
"untrusted",
|
|
3043
3205
|
]
|
|
3044
3206
|
|
|
3045
3207
|
[[package]]
|
|
@@ -3048,9 +3210,9 @@ version = "0.102.4"
|
|
|
3048
3210
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3049
3211
|
checksum = "ff448f7e92e913c4b7d4c6d8e4540a1724b319b4152b8aef6d4cf8339712b33e"
|
|
3050
3212
|
dependencies = [
|
|
3051
|
-
"ring
|
|
3213
|
+
"ring",
|
|
3052
3214
|
"rustls-pki-types",
|
|
3053
|
-
"untrusted
|
|
3215
|
+
"untrusted",
|
|
3054
3216
|
]
|
|
3055
3217
|
|
|
3056
3218
|
[[package]]
|
|
@@ -3101,8 +3263,8 @@ version = "0.7.1"
|
|
|
3101
3263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3102
3264
|
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
|
|
3103
3265
|
dependencies = [
|
|
3104
|
-
"ring
|
|
3105
|
-
"untrusted
|
|
3266
|
+
"ring",
|
|
3267
|
+
"untrusted",
|
|
3106
3268
|
]
|
|
3107
3269
|
|
|
3108
3270
|
[[package]]
|
|
@@ -3220,6 +3382,15 @@ dependencies = [
|
|
|
3220
3382
|
"lazy_static",
|
|
3221
3383
|
]
|
|
3222
3384
|
|
|
3385
|
+
[[package]]
|
|
3386
|
+
name = "shellexpand"
|
|
3387
|
+
version = "3.1.0"
|
|
3388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3389
|
+
checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b"
|
|
3390
|
+
dependencies = [
|
|
3391
|
+
"dirs",
|
|
3392
|
+
]
|
|
3393
|
+
|
|
3223
3394
|
[[package]]
|
|
3224
3395
|
name = "shlex"
|
|
3225
3396
|
version = "0.1.1"
|
|
@@ -3279,12 +3450,6 @@ dependencies = [
|
|
|
3279
3450
|
"windows-sys 0.52.0",
|
|
3280
3451
|
]
|
|
3281
3452
|
|
|
3282
|
-
[[package]]
|
|
3283
|
-
name = "spin"
|
|
3284
|
-
version = "0.5.2"
|
|
3285
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3286
|
-
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
|
|
3287
|
-
|
|
3288
3453
|
[[package]]
|
|
3289
3454
|
name = "spin"
|
|
3290
3455
|
version = "0.9.8"
|
|
@@ -3315,6 +3480,12 @@ version = "0.10.0"
|
|
|
3315
3480
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3316
3481
|
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
|
3317
3482
|
|
|
3483
|
+
[[package]]
|
|
3484
|
+
name = "strsim"
|
|
3485
|
+
version = "0.11.1"
|
|
3486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3487
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
3488
|
+
|
|
3318
3489
|
[[package]]
|
|
3319
3490
|
name = "strum"
|
|
3320
3491
|
version = "0.26.2"
|
|
@@ -3970,6 +4141,15 @@ version = "0.1.6"
|
|
|
3970
4141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3971
4142
|
checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9"
|
|
3972
4143
|
|
|
4144
|
+
[[package]]
|
|
4145
|
+
name = "uncased"
|
|
4146
|
+
version = "0.9.10"
|
|
4147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4148
|
+
checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697"
|
|
4149
|
+
dependencies = [
|
|
4150
|
+
"version_check",
|
|
4151
|
+
]
|
|
4152
|
+
|
|
3973
4153
|
[[package]]
|
|
3974
4154
|
name = "unic-char-property"
|
|
3975
4155
|
version = "0.9.0"
|
|
@@ -4038,12 +4218,6 @@ version = "0.2.3"
|
|
|
4038
4218
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4039
4219
|
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
4040
4220
|
|
|
4041
|
-
[[package]]
|
|
4042
|
-
name = "untrusted"
|
|
4043
|
-
version = "0.7.1"
|
|
4044
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4045
|
-
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
|
|
4046
|
-
|
|
4047
4221
|
[[package]]
|
|
4048
4222
|
name = "untrusted"
|
|
4049
4223
|
version = "0.9.0"
|
|
@@ -4269,8 +4443,8 @@ version = "0.22.4"
|
|
|
4269
4443
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4270
4444
|
checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53"
|
|
4271
4445
|
dependencies = [
|
|
4272
|
-
"ring
|
|
4273
|
-
"untrusted
|
|
4446
|
+
"ring",
|
|
4447
|
+
"untrusted",
|
|
4274
4448
|
]
|
|
4275
4449
|
|
|
4276
4450
|
[[package]]
|
|
@@ -4504,6 +4678,12 @@ version = "0.5.1"
|
|
|
4504
4678
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4505
4679
|
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
|
|
4506
4680
|
|
|
4681
|
+
[[package]]
|
|
4682
|
+
name = "yansi"
|
|
4683
|
+
version = "1.0.1"
|
|
4684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4685
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
4686
|
+
|
|
4507
4687
|
[[package]]
|
|
4508
4688
|
name = "yoke"
|
|
4509
4689
|
version = "0.7.4"
|
|
@@ -4567,9 +4747,9 @@ dependencies = [
|
|
|
4567
4747
|
|
|
4568
4748
|
[[package]]
|
|
4569
4749
|
name = "zerovec"
|
|
4570
|
-
version = "0.10.
|
|
4750
|
+
version = "0.10.4"
|
|
4571
4751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4572
|
-
checksum = "
|
|
4752
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
|
4573
4753
|
dependencies = [
|
|
4574
4754
|
"yoke",
|
|
4575
4755
|
"zerofrom",
|
|
@@ -4578,9 +4758,9 @@ dependencies = [
|
|
|
4578
4758
|
|
|
4579
4759
|
[[package]]
|
|
4580
4760
|
name = "zerovec-derive"
|
|
4581
|
-
version = "0.10.
|
|
4761
|
+
version = "0.10.3"
|
|
4582
4762
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4583
|
-
checksum = "
|
|
4763
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
|
4584
4764
|
dependencies = [
|
|
4585
4765
|
"proc-macro2",
|
|
4586
4766
|
"quote",
|
|
@@ -4,9 +4,9 @@ resolver = "2"
|
|
|
4
4
|
|
|
5
5
|
[workspace.dependencies]
|
|
6
6
|
qcs-api = "0.2.1"
|
|
7
|
-
qcs-api-client-common = "0.
|
|
8
|
-
qcs-api-client-grpc = "0.
|
|
9
|
-
qcs-api-client-openapi = "0.
|
|
7
|
+
qcs-api-client-common = "0.8.4"
|
|
8
|
+
qcs-api-client-grpc = "0.8.4"
|
|
9
|
+
qcs-api-client-openapi = "0.9.4"
|
|
10
10
|
serde_json = "1.0.86"
|
|
11
11
|
thiserror = "1.0.57"
|
|
12
12
|
tokio = "1.36.0"
|
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 0.23.0
|
|
2
|
+
|
|
3
|
+
### Breaking Changes
|
|
4
|
+
|
|
5
|
+
- update qcs-api deps to use a >=9 version of jsonwebtoken (#483)
|
|
6
|
+
|
|
7
|
+
## 0.23.0-rc.0
|
|
8
|
+
|
|
9
|
+
### Breaking Changes
|
|
10
|
+
|
|
11
|
+
- update qcs-api deps to use a >=9 version of jsonwebtoken (#483)
|
|
12
|
+
|
|
1
13
|
## 0.22.0
|
|
2
14
|
|
|
3
15
|
### Breaking Changes
|
|
@@ -11,7 +11,7 @@ MEASURE 0 ro[0]
|
|
|
11
11
|
const QUANTUM_PROCESSOR_ID: &str = "Aspen-M-3";
|
|
12
12
|
|
|
13
13
|
async fn quilc_client() -> rpcq::Client {
|
|
14
|
-
let qcs = Qcs::load()
|
|
14
|
+
let qcs = Qcs::load();
|
|
15
15
|
let endpoint = qcs.get_config().quilc_url();
|
|
16
16
|
rpcq::Client::new(endpoint).unwrap()
|
|
17
17
|
}
|