summary refs log tree commit diff stats
path: root/docs/devel/rust.rst
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2025-05-02 10:28:11 +0200
committerPaolo Bonzini <pbonzini@redhat.com>2025-05-06 16:02:04 +0200
commit51209c2aed343a45f79b522706c807abbdcf01a3 (patch)
tree9824abaf90dc2a48ba397328769166ba224bda48 /docs/devel/rust.rst
parente4fb0be1d1d6b67df7709d84d16133b64f455ce8 (diff)
downloadfocaccia-qemu-51209c2aed343a45f79b522706c807abbdcf01a3.tar.gz
focaccia-qemu-51209c2aed343a45f79b522706c807abbdcf01a3.zip
rust: let bilge use "let ... else"
"let ... else" was stabilized in 1.65.0; bumping the minimum supported
Rust version means we don't need to patch it out anymore.

Reviewed-by: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
Reviewed-by: Zhao Liu <zhao1.liu@intel.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'docs/devel/rust.rst')
-rw-r--r--docs/devel/rust.rst3
1 files changed, 0 insertions, 3 deletions
diff --git a/docs/devel/rust.rst b/docs/devel/rust.rst
index c7dfba98de..8167ff49aa 100644
--- a/docs/devel/rust.rst
+++ b/docs/devel/rust.rst
@@ -76,9 +76,6 @@ are missing:
 
 * ``cast_mut()``/``cast_const()`` (1.65.0).  Use ``as`` instead.
 
-* "let ... else" (1.65.0).  Use ``if let`` instead.  This is currently patched
-  in QEMU's vendored copy of the bilge crate.
-
 * Generic Associated Types (1.65.0)
 
 * ``CStr::from_bytes_with_nul()`` as a ``const`` function (1.72.0).