From 10bec327703303eca5f8ec5809c4713a4294313d Mon Sep 17 00:00:00 2001 From: Austin Bonander Date: Mon, 2 Sep 2024 16:28:33 -0700 Subject: [PATCH] doc(FAQ): add example for MSRV --- FAQ.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/FAQ.md b/FAQ.md index b9089720..f0bccd3c 100644 --- a/FAQ.md +++ b/FAQ.md @@ -23,6 +23,9 @@ For each database and where applicable, we test against the latest and oldest ve SQLx's MSRV is the second-to-latest stable release as of the beginning of the current release cycle (`0.x.0`). It will remain there until the next major release (`0.{x + 1}.0`). +For example, as of the `0.8.0` release of SQLx, the latest stable Rust version was `1.79.0`, so the MSRV for the +`0.8.x` release cycle of SQLx is `1.78.0`. + This guarantees that SQLx will compile with a Rust version that is _at least_ six weeks old, which should be plenty of time for it to make it through any packaging system that is being actively kept up to date.