Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Lower minimum rustc version to 1.58.1 #13857

Merged
merged 2 commits into from
Sep 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.61.0
toolchain: 1.58.1
override: true
components: clippy
- uses: Swatinem/rust-cache@v2
Expand All @@ -112,7 +112,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.61.0
toolchain: 1.58.1
override: true
components: rustfmt
- uses: Swatinem/rust-cache@v2
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.61.0
toolchain: 1.58.1
override: true
- uses: Swatinem/rust-cache@v2

Expand Down Expand Up @@ -320,7 +320,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.61.0
toolchain: 1.58.1
override: true
- uses: Swatinem/rust-cache@v2

Expand Down Expand Up @@ -452,7 +452,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.61.0
toolchain: 1.58.1
override: true
- uses: Swatinem/rust-cache@v2

Expand All @@ -478,7 +478,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.61.0
toolchain: 1.58.1
override: true
- uses: Swatinem/rust-cache@v2

Expand Down
1 change: 1 addition & 0 deletions changelog.d/13857.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Lower minimum supported rustc version to 1.58.1.
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "synapse"
version = "0.1.0"

edition = "2021"
rust-version = "1.61.0"
rust-version = "1.58.1"

[lib]
name = "synapse"
Expand Down