Bump MSRV to 1.70

This commit is contained in:
2023-08-25 08:49:08 +02:00
parent 29c9daf53e
commit 49b15bb6bd
5 changed files with 5 additions and 5 deletions

View File

@@ -15,7 +15,7 @@ jobs:
strategy: strategy:
matrix: matrix:
rust: rust:
- "1.63" # minimum stable rust version - "1.70" # minimum stable rust version
- stable - stable
- beta - beta
- nightly - nightly

View File

@@ -8,7 +8,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### Added ### Added
- The minimum supported Rust version is now defined as 1.63. Previously it was undefined. - The minimum supported Rust version is now defined as 1.70. Previously it was undefined.
- Wrappers for `std::sync` primitives can now be `const` constructed. - Wrappers for `std::sync` primitives can now be `const` constructed.
### Breaking ### Breaking

View File

@@ -10,7 +10,7 @@ keywords = ["mutex", "rwlock", "once", "thread"]
description = "Ensure deadlock-free mutexes by allocating in order, or else." description = "Ensure deadlock-free mutexes by allocating in order, or else."
readme = "README.md" readme = "README.md"
repository = "https://github.com/bertptrs/tracing-mutex" repository = "https://github.com/bertptrs/tracing-mutex"
rust-version = "1.63" rust-version = "1.70"
[package.metadata.docs.rs] [package.metadata.docs.rs]
# Build docs for all features so the documentation is more complete # Build docs for all features so the documentation is more complete

View File

@@ -61,7 +61,7 @@ performance penalty in your production environment, this library also offers deb
when debug assertions are enabled, and to `Mutex` when they are not. Similar helper types are when debug assertions are enabled, and to `Mutex` when they are not. Similar helper types are
available for other synchronization primitives. available for other synchronization primitives.
The minimum supported Rust version is 1.63. Increasing this is not considered a breaking change, but The minimum supported Rust version is 1.70. Increasing this is not considered a breaking change, but
will be avoided within semver-compatible releases if possible. will be avoided within semver-compatible releases if possible.
### Features ### Features

View File

@@ -1,5 +1,5 @@
status = [ status = [
'Rust project (1.63)', 'Rust project (1.70)',
'Rust project (stable)', 'Rust project (stable)',
'Rust project (beta)', 'Rust project (beta)',
'Documentation build', 'Documentation build',