commit: a4440640042cbac7b160ddd9a9c87321f33e399b Author: Eli Schwartz <eschwartz <AT> gentoo <DOT> org> AuthorDate: Mon Sep 1 18:17:07 2025 +0000 Commit: Eli Schwartz <eschwartz <AT> gentoo <DOT> org> CommitDate: Mon Sep 1 23:45:48 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4440640
dev-python/rpds-py: fix minimum rust version for stable ebuild too Tried to install rpds-py in a chroot, and due to PYTHON_TARGETS I didn't hit the binhost: ``` failed to parse manifest at `/var/tmp/portage/dev-python/rpds-py-0.25.1/work/cargo_home/gentoo/rpds-1.1.1/Cargo.toml` Caused by: feature `edition2024` is required The package requires the Cargo feature called `edition2024`, but that feature is not stabilized in this version of Cargo (1.84.1 (66221abde 2024-11-19)). ``` Bug: https://bugs.gentoo.org/961458 Signed-off-by: Eli Schwartz <eschwartz <AT> gentoo.org> dev-python/rpds-py/rpds-py-0.25.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/rpds-py/rpds-py-0.25.1.ebuild b/dev-python/rpds-py/rpds-py-0.25.1.ebuild index a32b2eab8b40..5df63d3cfcbb 100644 --- a/dev-python/rpds-py/rpds-py-0.25.1.ebuild +++ b/dev-python/rpds-py/rpds-py-0.25.1.ebuild @@ -34,7 +34,7 @@ CRATES=" [email protected] " -RUST_MIN_VER="1.77.1" +RUST_MIN_VER="1.85.0" inherit cargo distutils-r1 pypi
