Update C++ MSRV

Because some crate in our examples are using the edition2024 resolver
with no way to remove them without removing the exmaples from the
workspace, this means that effectively the C++ build which needs to run
the cargo metadata on the workspace, doens't build anymore with the
rust MSRV

ChangeLog: C++: requires Rust 1.85
This commit is contained in:
Olivier Goffart 2025-06-10 11:27:47 +02:00
parent feee3188d7
commit 2930d90bf0
3 changed files with 3 additions and 3 deletions

View file

@ -49,7 +49,7 @@ In the next section you will learn how to use the installed library in your appl
First you need to install the prerequisites:
* Install Rust by following the [Rust Getting Started Guide](https://www.rust-lang.org/learn/get-started). If you already
have Rust installed, make sure that it's at least version 1.82 or newer. You can check which version you have installed
have Rust installed, make sure that it's at least version 1.85 or newer. You can check which version you have installed
by running `rustc --version`. Once this is done, you should have the `rustc` compiler and the `cargo` build system installed in your path.
You can either choose to compile Slint from source along with your application or include Slint as an external CMake package.