diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2025-05-02 23:36:11 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2025-05-06 16:02:04 +0200 |
commit | e0b2b74f70a85b16e9d4a9b6111e09956ae4cfd9 (patch) | |
tree | efe364902118a81555f224b14d9536d3ed2255a6 /rust | |
parent | 641f1c53862aec64810c0b93b5b1de49d55fda92 (diff) | |
download | qemu-e0b2b74f70a85b16e9d4a9b6111e09956ae4cfd9.zip qemu-e0b2b74f70a85b16e9d4a9b6111e09956ae4cfd9.tar.gz qemu-e0b2b74f70a85b16e9d4a9b6111e09956ae4cfd9.tar.bz2 |
meson, cargo: require Rust 1.77.0
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 'rust')
-rw-r--r-- | rust/Cargo.toml | 2 | ||||
-rw-r--r-- | rust/clippy.toml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 5ace47c..eda7980 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -12,7 +12,7 @@ edition = "2021" homepage = "https://www.qemu.org" license = "GPL-2.0-or-later" repository = "https://gitlab.com/qemu-project/qemu/" -rust-version = "1.63.0" +rust-version = "1.77.0" [workspace.lints.rust] unexpected_cfgs = { level = "deny", check-cfg = [ diff --git a/rust/clippy.toml b/rust/clippy.toml index 5d190f9..933e46a 100644 --- a/rust/clippy.toml +++ b/rust/clippy.toml @@ -1,2 +1,2 @@ doc-valid-idents = ["PrimeCell", ".."] -msrv = "1.63.0" +msrv = "1.77.0" |