-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(msrv): align MSRV with rusqlite
Starting with version [0.33](https://github.com/rusqlite/rusqlite/releases/tag/v0.33.0), rusqlite has a policy for the minimum supported rust version (see rusqlite/rusqlite#1576). Align our MSRV and rusqlite’s, if rusqlite doesn’t support a particular version (i.e. doesn’t compile), then rusqlite_migration can’t be used either. We could try to figure out what version of Rust still compiles with rusqlite, beyond their official MSRV, but that’s easy to get wrong and an additional support burden on us. Now, for now it means that the MSRV is effectively the latest Rust version, but that should change as new releases of Rust become stable (i.e. if 1.85 gets out before rusqlite gets a new version, we will again have a MSRV that’s not the latest stable Rust). Thus, it’s worth keeping the CI code to test two different versions.
- Loading branch information
Showing
4 changed files
with
17 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters