Skip to content

Commit 461fcd9

Browse files
committed
Bump MSRV to 1.61
The CI was failing before this change, because crossbeam-channel already requires 1.60 Many other crates (serde-derive, log, syn v2.0) already require 1.61.
1 parent 9392bcf commit 461fcd9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
strategy:
2828
fail-fast: false # Even if one job fails we still want to see the other ones
2929
matrix:
30-
# 1.59 is MSRV
31-
rust: [1.59, stable, nightly]
30+
# 1.61 is MSRV
31+
rust: [1.61, stable, nightly]
3232
# NOTE: Features to test must be specified manually. They are applied to all versions separately.
3333
#
34-
# This has the advantage of being more flexibile and thorough
35-
# This has the disadvantage of being more vebrose
34+
# This has the advantage of being more flexible and thorough
35+
# This has the disadvantage of being more verbose
3636
#
3737
# Specific feature combos can be overridden per-version with 'include' and 'ecclude'
3838
features: ["", "nested-values", "dynamic-keys", "nested-values dynamic-keys"]

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ documentation = "https://docs.rs/slog-async"
1010
homepage = "https://github.com/slog-rs/slog"
1111
repository = "https://github.com/slog-rs/async"
1212
readme = "README.md"
13-
rust-version = "1.59.0"
13+
rust-version = "1.61"
1414

1515
[features]
1616
nested-values = ["slog/nested-values"]

0 commit comments

Comments
 (0)