Skip to content

Commit e3c5656

Browse files
committed
feat: update MSRV to Rust 1.60.0
This is `tonic` 0.9's MSRV, so we must update our minimum Rust version as well.
1 parent 54f6be9 commit e3c5656

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

Diff for: .github/workflows/ci.yaml

+2-3
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,8 @@ jobs:
5555
os: [ubuntu-latest, macos-latest, windows-latest]
5656
rust: [stable]
5757
include:
58-
# Make 1.58 MSRV due to <=1.57 failing to build console-api due to a bug
59-
# with cargo version resolution.
60-
- rust: 1.58.0
58+
# Make 1.60 MSRV, as it's Tonic 0.9's MSRV.
59+
- rust: 1.60.0
6160
os: ubuntu-latest
6261
# Try to build on the latest nightly. This job is allowed to fail, but
6362
# it's useful to help catch bugs in upcoming Rust versions.

Diff for: console-api/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "console-api"
33
version = "0.4.0"
44
license = "MIT"
55
edition = "2021"
6-
rust-version = "1.58.0"
6+
rust-version = "1.60.0"
77
authors = ["Eliza Weisman <[email protected]>", "Tokio Contributors <[email protected]>",]
88
readme = "README.md"
99
repository = "https://github.com/tokio-rs/console/"

Diff for: console-subscriber/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "console-subscriber"
33
version = "0.1.8"
44
license = "MIT"
55
edition = "2021"
6-
rust-version = "1.58.0"
6+
rust-version = "1.60.0"
77
authors = ["Eliza Weisman <[email protected]>", "Tokio Contributors <[email protected]>",]
88
readme = "README.md"
99
repository = "https://github.com/tokio-rs/console/"

Diff for: tokio-console/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.7"
44
license = "MIT"
55
repository = "https://github.com/tokio-rs/console"
66
edition = "2021"
7-
rust-version = "1.58.0"
7+
rust-version = "1.60.0"
88
authors = ["Eliza Weisman <[email protected]>", "Tokio Contributors <[email protected]>",]
99
readme = "README.md"
1010
default-run = "tokio-console"

Diff for: xtask/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "xtask"
33
version = "0.1.0"
44
license = "MIT"
55
edition = "2021"
6-
rust-version = "1.56.0"
6+
rust-version = "1.60.0"
77
publish = false
88

99
[dependencies]

0 commit comments

Comments
 (0)