Skip to content

Commit

Permalink
chore: upgrade rust && deps (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
lispc authored Mar 10, 2021
1 parent 1c7e267 commit 13fa811
Show file tree
Hide file tree
Showing 7 changed files with 269 additions and 472 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
rust:
- 1.49.0
- 1.50.0

steps:
- name: Checkout sources
Expand All @@ -46,11 +46,11 @@ jobs:
- name: Install libpq
run: sudo apt-get install libpq-dev

- name: Install rust 1.49.0 toolchain
- name: Install rust 1.50.0 toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.49.0
toolchain: 1.50.0
override: true
components: rustfmt, clippy

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
rust:
- 1.49.0
- 1.50.0

steps:
- name: Checkout sources
Expand All @@ -42,11 +42,11 @@ jobs:
path: target
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}

- name: Install 1.49.0 toolchain
- name: Install 1.50.0 toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.49.0
toolchain: 1.50.0
override: true
components: rustfmt, clippy

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
rust:
- 1.49.0
- 1.50.0

steps:
- name: Checkout sources
Expand All @@ -42,11 +42,11 @@ jobs:
path: target
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}

- name: Install 1.49.0 toolchain
- name: Install 1.50.0 toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.49.0
toolchain: 1.50.0
override: true
components: rustfmt, clippy

Expand Down
Loading

0 comments on commit 13fa811

Please sign in to comment.