Skip to content

Commit 71fc562

Browse files
committed
appender: bump MSRV to 1.53.0 (#1851)
The `time` crate bumped its MSRV to 1.53.0 in v0.3.6: time-rs/time@2d37c01 Since `tracing-appender` has a non-optional dependency on `time`, it's necessary to increase its MSRV to track this.
1 parent af254a1 commit 71fc562

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ jobs:
4646

4747
# TODO: remove this once tracing's MSRV is bumped.
4848
check-msrv-appender:
49-
# Run `cargo check` on our minimum supported Rust version (1.51.0).
49+
# Run `cargo check` on our minimum supported Rust version (1.53.0).
5050
runs-on: ubuntu-latest
5151
steps:
5252
- uses: actions/checkout@main
5353
- uses: actions-rs/toolchain@v1
5454
with:
55-
toolchain: 1.51.0
55+
toolchain: 1.53.0
5656
profile: minimal
5757
override: true
5858
- name: Check

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.51.0"
21+
rust-version = "1.53.0"
2222

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

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.51+][msrv]*
39+
*Compiler support: [requires `rustc` 1.53+][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.51. The current `tracing-appender` version is not guaranteed to build on
149+
version is 1.53. 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

0 commit comments

Comments
 (0)