Skip to content

Commit 157d231

Browse files
committed
chore: bump MSRV to 1.63 (#2793)
1 parent f03c612 commit 157d231

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

tracing-appender/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ categories = [
1818
]
1919
keywords = ["logging", "tracing", "file-appender", "non-blocking-writer"]
2020
edition = "2018"
21-
rust-version = "1.53.0"
21+
rust-version = "1.63.0"
2222

2323
[dependencies]
2424
crossbeam-channel = "0.5.5"

tracing-appender/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ allows events and spans to be recorded in a non-blocking manner through a
3636
dedicated logging thread. It also provides a [`RollingFileAppender`][file_appender]
3737
that can be used with _or_ without the non-blocking writer.
3838

39-
*Compiler support: [requires `rustc` 1.53+][msrv]*
39+
*Compiler support: [requires `rustc` 1.63+][msrv]*
4040

4141
[msrv]: #supported-rust-versions
4242

@@ -146,7 +146,7 @@ fn main() {
146146
## Supported Rust Versions
147147

148148
`tracing-appender` is built against the latest stable release. The minimum supported
149-
version is 1.53. The current `tracing-appender` version is not guaranteed to build on
149+
version is 1.63. The current `tracing-appender` version is not guaranteed to build on
150150
Rust versions earlier than the minimum supported version.
151151

152152
Tracing follows the same compiler support policies as the rest of the Tokio

tracing-appender/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! a dedicated logging thread. It also provides a [`RollingFileAppender`][file_appender] that can
88
//! be used with _or_ without the non-blocking writer.
99
//!
10-
//! *Compiler support: [requires `rustc` 1.51+][msrv]*
10+
//! *Compiler support: [requires `rustc` 1.63+][msrv]*
1111
//!
1212
//! [msrv]: #supported-rust-versions
1313
//! [file_appender]: rolling::RollingFileAppender
@@ -124,7 +124,7 @@
124124
//! ## Supported Rust Versions
125125
//!
126126
//! `tracing-appender` is built against the latest stable release. The minimum supported
127-
//! version is 1.51. The current `tracing-appender` version is not guaranteed to build on
127+
//! version is 1.63. The current `tracing-appender` version is not guaranteed to build on
128128
//! Rust versions earlier than the minimum supported version.
129129
//!
130130
//! Tracing follows the same compiler support policies as the rest of the Tokio

0 commit comments

Comments
 (0)