Skip to content

Commit 8ed09c8

Browse files
committed
Set MSRV to 1.56 for now
1 parent 92306cb commit 8ed09c8

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed

.github/workflows/main.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,16 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest, macos-latest, windows-latest]
15-
rust: [stable, beta]
15+
rust: [stable, beta, 1.56.0]
1616
exclude:
1717
- os: macos-latest
1818
rust: beta
1919
- os: windows-latest
2020
rust: beta
21+
- os: macos-latest
22+
rust: 1.56.0
23+
- os: windows-latest
24+
rust: 1.56.0
2125

2226
runs-on: ${{ matrix.os }}
2327

bb8/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ repository = "https://github.com/djc/bb8"
77
edition = "2021"
88
workspace = ".."
99
readme = "../README.md"
10+
rust-version = "1.56"
1011

1112
[dependencies]
1213
async-trait = "0.1"

postgres/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ description = "Full-featured async (tokio-based) postgres connection pool (like
55
license = "MIT"
66
repository = "https://github.com/djc/bb8"
77
edition = "2021"
8+
rust-version = "1.56"
89

910
[features]
1011
"with-bit-vec-0_6" = ["tokio-postgres/with-bit-vec-0_6"]

redis/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ description = "Full-featured async (tokio-based) redis connection pool (like r2d
55
license = "MIT"
66
repository = "https://github.com/djc/bb8"
77
edition = "2021"
8+
rust-version = "1.56"
89

910
[dependencies]
1011
async-trait = "0.1"

0 commit comments

Comments
 (0)