Skip to content

Commit

Permalink
Set MSRV to 1.58 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
djc committed Aug 3, 2022
1 parent 92306cb commit c1855b1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,16 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: [stable, beta]
rust: [stable, beta, 1.58.0]
exclude:
- os: macos-latest
rust: beta
- os: windows-latest
rust: beta
- os: macos-latest
rust: 1.58.0
- os: windows-latest
rust: 1.58.0

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

Expand Down
1 change: 1 addition & 0 deletions bb8/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ repository = "https://github.com/djc/bb8"
edition = "2021"
workspace = ".."
readme = "../README.md"
rust-version = "1.56"

[dependencies]
async-trait = "0.1"
Expand Down
1 change: 1 addition & 0 deletions postgres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ description = "Full-featured async (tokio-based) postgres connection pool (like
license = "MIT"
repository = "https://github.com/djc/bb8"
edition = "2021"
rust-version = "1.56"

[features]
"with-bit-vec-0_6" = ["tokio-postgres/with-bit-vec-0_6"]
Expand Down
1 change: 1 addition & 0 deletions redis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ description = "Full-featured async (tokio-based) redis connection pool (like r2d
license = "MIT"
repository = "https://github.com/djc/bb8"
edition = "2021"
rust-version = "1.56"

[dependencies]
async-trait = "0.1"
Expand Down

0 comments on commit c1855b1

Please sign in to comment.