Skip to content

Commit a3decb1

Browse files
committed
try and fix build
1 parent 3bd7ccd commit a3decb1

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
- uses: actions/checkout@v3
5858
- uses: dtolnay/rust-toolchain@master
5959
with:
60-
toolchain: ${{ matrix.rust-version.version }}
60+
toolchain: ${{ matrix.rust-version }}
6161
components: rustfmt, clippy
6262
- uses: taiki-e/install-action@cargo-hack
6363
- uses: Swatinem/rust-cache@v2

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ keywords = ["buffers", "zero-copy", "io"]
88
license = "Apache-2.0"
99
readme = "README.md"
1010
repository = "https://github.com/sunshowers-code/buf-list"
11-
rust-version = "1.39"
11+
rust-version = "1.70"
1212

1313
[lints]
1414
rust.unexpected_cfgs = { level = "warn", check-cfg = ["cfg(doc_cfg)"] }

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ fn into_try_stream<E>(buf_list: BufList) -> impl TryStream<Ok = Bytes, Error = E
9999

100100
## Minimum supported Rust version
101101

102-
The minimum supported Rust version (MSRV) is **1.39**, same as the `bytes` crate. Optional
103-
features may cause a bump in the MSRV.
102+
The minimum supported Rust version (MSRV) is **1.70**. Optional features may
103+
cause a bump in the MSRV.
104104

105105
The MSRV is not expected to change in the future. If the MSRV changes, it will be accompanied by
106106
a major version bump to `buf-list`.

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@
109109
//!
110110
//! # Minimum supported Rust version
111111
//!
112-
//! The minimum supported Rust version (MSRV) is **1.39**, same as the `bytes` crate. Optional
113-
//! features may cause a bump in the MSRV.
112+
//! The minimum supported Rust version (MSRV) is **1.70**. Optional features may
113+
//! cause a bump in the MSRV.
114114
//!
115115
//! The MSRV is not expected to change in the future. If the MSRV changes, it will be accompanied by
116116
//! a major version bump to `buf-list`.

0 commit comments

Comments
 (0)