Skip to content

Commit

Permalink
Merge pull request #44 from pksunkara/pavan/msrv
Browse files Browse the repository at this point in the history
Update MSRV to 1.74
  • Loading branch information
pksunkara authored May 21, 2024
2 parents 566bc1b + 600eff2 commit 2f7965c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install rust
uses: dtolnay/rust-toolchain@1.70.0
uses: dtolnay/rust-toolchain@1.74.0
with:
components: rustfmt, clippy
- name: Checkout
Expand All @@ -53,6 +53,6 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Install rust
uses: dtolnay/rust-toolchain@1.70.0
uses: dtolnay/rust-toolchain@1.74.0
- name: Lockfile check
run: cargo update -w --locked
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Install rust
uses: dtolnay/rust-toolchain@1.70.0
uses: dtolnay/rust-toolchain@1.74.0
- name: Install dependencies
run: |
# Add postgres package repo
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ publish = false
version = "0.1.4"

edition = "2021"
rust-version = "1.70.0"
rust-version = "1.74.0"

[lib]
crate-type = ["cdylib"]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ RUN chown postgres:postgres /home/postgres
USER postgres

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

0 comments on commit 2f7965c

Please sign in to comment.