Skip to content

Commit 2f7965c

Browse files
authored
Merge pull request #44 from pksunkara/pavan/msrv
Update MSRV to 1.74
2 parents 566bc1b + 600eff2 commit 2f7965c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
steps:
3838
- name: Install rust
39-
uses: dtolnay/rust-toolchain@1.70.0
39+
uses: dtolnay/rust-toolchain@1.74.0
4040
with:
4141
components: rustfmt, clippy
4242
- name: Checkout
@@ -53,6 +53,6 @@ jobs:
5353
- name: Checkout
5454
uses: actions/checkout@v3
5555
- name: Install rust
56-
uses: dtolnay/rust-toolchain@1.70.0
56+
uses: dtolnay/rust-toolchain@1.74.0
5757
- name: Lockfile check
5858
run: cargo update -w --locked

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Checkout
4343
uses: actions/checkout@v3
4444
- name: Install rust
45-
uses: dtolnay/rust-toolchain@1.70.0
45+
uses: dtolnay/rust-toolchain@1.74.0
4646
- name: Install dependencies
4747
run: |
4848
# Add postgres package repo

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ publish = false
44
version = "0.1.4"
55

66
edition = "2021"
7-
rust-version = "1.70.0"
7+
rust-version = "1.74.0"
88

99
[lib]
1010
crate-type = ["cdylib"]

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN chown postgres:postgres /home/postgres
2525
USER postgres
2626

2727
RUN \
28-
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path --profile minimal --default-toolchain 1.70.0 && \
28+
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path --profile minimal --default-toolchain 1.74.0 && \
2929
rustup --version && \
3030
rustc --version && \
3131
cargo --version

0 commit comments

Comments
 (0)