1 Commits

Author SHA1 Message Date
8433eb273a Bump MSRV to 1.70 2023-08-25 08:49:08 +02:00
4 changed files with 4 additions and 4 deletions

View File

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

View File

@@ -8,7 +8,7 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
### 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.
### Breaking

View File

@@ -10,7 +10,7 @@ keywords = ["mutex", "rwlock", "once", "thread"]
description = "Ensure deadlock-free mutexes by allocating in order, or else."
readme = "README.md"
repository = "https://github.com/bertptrs/tracing-mutex"
rust-version = "1.63"
rust-version = "1.70"
[package.metadata.docs.rs]
# 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
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.
### Features