Skip to content

Commit dc8f883

Browse files
authored
feat: Update quil-rs (#464)
* feat: Update quil-rs * bump rustls * other deny changes
1 parent 7a661dd commit dc8f883

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ tokio = "1.36.0"
1616
# `crates/python/pyproject.toml`.
1717
# The version must also be specified in order to publish to crates.io. Cargo enforces
1818
# that the specified version is the same as the version in the git repository.
19-
quil-rs = { version = "0.25.1", git = "https://github.com/rigetti/quil-rs", tag = "quil-py/v0.9.1" }
19+
quil-rs = { version = "0.26.0", git = "https://github.com/rigetti/quil-rs", tag = "quil-py/v0.10.0" }
2020

2121
# ndarray is used by the `qcs` crate, but it is also used in the `python` crate via a
2222
# re-export through the numpy crate. They should be updated as a pair to keep both

crates/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ classifiers = [
2020
"Programming Language :: Python :: 3.11",
2121
"Operating System :: OS Independent",
2222
]
23-
dependencies = ["quil==0.9.1"]
23+
dependencies = ["quil==0.10.0"]
2424

2525
# PEP 621 specifies the [project] table as the source for project metadata. However, Poetry only supports [tool.poetry]
2626
# We can remove this table once this issue is resolved: https://github.com/python-poetry/poetry/issues/3332

deny.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ ignore = [
2828
"RUSTSEC-2023-0052", # Introduced by transitive dependency `webpki`.
2929
# `hyper-proxy`, then `qcs-api-client-rust` need to update in order to remove
3030
# `webpki`.
31-
"RUSTSEC-2024-0006", # Introduced by bindgen/shlex with no valid upgrade path.
31+
"RUSTSEC-2024-0006", # Introduced by bindgen/shlex with no valid upgrade path.
3232
"RUSTSEC-2023-0055", # there isn't a newer version of lexical with a fix
33+
"RUSTSEC-2024-0336", # needs to be address in qcs-api-client-rust.
3334
]
3435

3536
# This section is considered when running `cargo deny check licenses`

0 commit comments

Comments
 (0)