Skip to content

Commit 9bc2982

Browse files
authored
Bump MSRV to 1.56 (#97)
syn 2.0 requires 1.56.
1 parent bf41b96 commit 9bc2982

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
# This is the minimum supported Rust version of this crate.
1717
# When updating this, the reminder to update the minimum supported
1818
# Rust version in README.md, Cargo.toml, and .clippy.toml.
19-
minrust: 1.45.2
19+
minrust: '1.56'
2020

2121
jobs:
2222
test:

async-stream-impl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "async-stream-impl"
33
version = "0.3.4"
44
edition = "2018"
5-
rust-version = "1.45"
5+
rust-version = "1.56"
66
license = "MIT"
77
authors = ["Carl Lerche <[email protected]>"]
88
description = "proc macros for async-stream crate"

async-stream/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name = "async-stream"
55
# - Create git tag
66
version = "0.3.4"
77
edition = "2018"
8-
rust-version = "1.45"
8+
rust-version = "1.56"
99
license = "MIT"
1010
authors = ["Carl Lerche <[email protected]>"]
1111
description = "Asynchronous streams using async & await notation"

async-stream/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ caller.
152152

153153
## Supported Rust Versions
154154

155-
`async-stream` is built against the latest stable release. The minimum supported version is 1.45 due to [function-like procedural macros in expression, pattern, and statement positions](https://blog.rust-lang.org/2020/07/16/Rust-1.45.0.html#stabilizing-function-like-procedural-macros-in-expressions-patterns-and-statements).
155+
The current minimum supported Rust version is 1.56.
156156

157157
## License
158158

0 commit comments

Comments
 (0)