Skip to content

Commit 2e02cbd

Browse files
authored
feat(ci): Remove support for features after MSRV (#1018)
1 parent 64432eb commit 2e02cbd

File tree

18 files changed

+31
-17
lines changed

18 files changed

+31
-17
lines changed

.github/workflows/action_tests.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
- uses: dtolnay/rust-toolchain@stable
1919
with:
2020
components: llvm-tools-preview
21+
toolchain: 1.81
2122
- uses: taiki-e/install-action@cargo-llvm-cov
2223
- name: Clone monorepo
2324
run: just monorepo

.github/workflows/book.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616
- uses: dtolnay/rust-toolchain@stable
17+
with:
18+
toolchain: 1.81
1719
- name: Setup mdbook
1820
run: |
1921
cargo install --version 0.4.40 mdbook

.github/workflows/client_host.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
uses: dtolnay/rust-toolchain@stable
2525
with:
2626
components: llvm-tools-preview
27+
toolchain: 1.81
2728
- uses: Swatinem/rust-cache@v2
2829
with:
2930
cache-on-failure: true

.github/workflows/monorepo_pin_update.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
token: ${{ secrets.PAT_TOKEN }}
1818
- uses: taiki-e/install-action@just
1919
- uses: dtolnay/rust-toolchain@stable
20+
with:
21+
toolchain: 1.81
2022
- name: Update Monorepo Commit
2123
run: just update-monorepo
2224
- name: Create Pull Request

.github/workflows/release.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
submodules: true
1919
- name: Install Rust toolchain
2020
uses: dtolnay/rust-toolchain@stable
21+
with:
22+
toolchain: 1.81
2123
- name: Commit Cargo.lock
2224
run: |
2325
git config --local user.email "[email protected]"

.github/workflows/rust_ci.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
- uses: taiki-e/install-action@just
2020
- name: Install Rust stable toolchain
2121
uses: dtolnay/rust-toolchain@stable
22+
with:
23+
toolchain: 1.81
2224
- uses: Swatinem/rust-cache@v2
2325
with:
2426
cache-on-failure: true
@@ -70,6 +72,8 @@ jobs:
7072
- uses: taiki-e/install-action@just
7173
- name: Install Rust stable toolchain
7274
uses: dtolnay/rust-toolchain@stable
75+
with:
76+
toolchain: 1.81
7377
- uses: Swatinem/rust-cache@v2
7478
with:
7579
cache-on-failure: true
@@ -94,6 +98,8 @@ jobs:
9498
- uses: taiki-e/install-action@just
9599
- name: Install Rust stable toolchain
96100
uses: dtolnay/rust-toolchain@stable
101+
with:
102+
toolchain: 1.81
97103
- uses: Swatinem/rust-cache@v2
98104
with:
99105
cache-on-failure: true
@@ -120,6 +126,8 @@ jobs:
120126
- uses: taiki-e/install-action@just
121127
- name: Install Rust stable toolchain
122128
uses: dtolnay/rust-toolchain@stable
129+
with:
130+
toolchain: 1.81
123131
- uses: Swatinem/rust-cache@v2
124132
with:
125133
cache-on-failure: true
@@ -138,6 +146,8 @@ jobs:
138146
- uses: taiki-e/install-action@just
139147
- name: Install Rust stable toolchain
140148
uses: dtolnay/rust-toolchain@stable
149+
with:
150+
toolchain: 1.81
141151
- uses: taiki-e/install-action@cargo-hack
142152
- uses: Swatinem/rust-cache@v2
143153
with:
@@ -154,6 +164,7 @@ jobs:
154164
- uses: dtolnay/rust-toolchain@stable
155165
with:
156166
components: llvm-tools-preview
167+
toolchain: 1.81
157168
- uses: Swatinem/rust-cache@v2
158169
with:
159170
cache-on-failure: true

.vscode/settings.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

bin/host/src/single/cfg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ impl SingleChainHost {
124124
}
125125

126126
/// Starts the preimage server, communicating with the client over the provided channels.
127-
async fn start_server<C>(&self, hint: C, preimage: C) -> Result<JoinHandle<Result<()>>>
127+
pub async fn start_server<C>(&self, hint: C, preimage: C) -> Result<JoinHandle<Result<()>>>
128128
where
129129
C: Channel + Send + Sync + 'static,
130130
{

crates/derive/src/attributes/stateful.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![allow(clippy::unnecessary_map_or)]
21
//! The [`AttributesBuilder`] and it's default implementation.
32
43
use crate::{

crates/derive/src/stages/batch/batch_validator.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![allow(clippy::unnecessary_map_or)]
21
//! Contains the [BatchValidator] stage.
32
43
use super::NextBatchProvider;

0 commit comments

Comments
 (0)