Browse Source

Lower minimum rustc version to 1.58.1 (#13857)

tags/v1.68.0rc2
Erik Johnston 1 year ago
committed by GitHub
parent
commit
b7508b1538
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 7 deletions
  1. +6
    -6
      .github/workflows/tests.yml
  2. +1
    -0
      changelog.d/13857.misc
  3. +1
    -1
      rust/Cargo.toml

+ 6
- 6
.github/workflows/tests.yml View File

@@ -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
@@ -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
@@ -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

@@ -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

@@ -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

@@ -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



+ 1
- 0
changelog.d/13857.misc View File

@@ -0,0 +1 @@
Lower minimum supported rustc version to 1.58.1.

+ 1
- 1
rust/Cargo.toml View File

@@ -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"


Loading…
Cancel
Save