Skip to content

Commit 1f08962

Browse files
authored
Merge pull request #2964 from itowlson/another-day-at-the-treadmill
Work around breaking change in `cross`
2 parents 74681e0 + 491bc73 commit 1f08962

File tree

6 files changed

+6
-4
lines changed

6 files changed

+6
-4
lines changed

.github/actions/spin-ci-dependencies/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inputs:
88
type: bool
99
rust-version:
1010
description: 'Rust version to setup'
11-
default: '1.79'
11+
default: '1.81'
1212
required: false
1313
type: string
1414

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ concurrency:
1717

1818
env:
1919
CARGO_TERM_COLOR: always
20-
RUST_VERSION: 1.79
20+
RUST_VERSION: 1.81
2121

2222
jobs:
2323
dependency-review:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
concurrency: ${{ github.workflow }}-${{ github.ref }}
1212

1313
env:
14-
RUST_VERSION: 1.79
14+
RUST_VERSION: 1.81
1515

1616
jobs:
1717
build-and-sign:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ edition = "2021"
1212
license = "Apache-2.0 WITH LLVM-exception"
1313
homepage = "https://developer.fermyon.com/spin"
1414
repository = "https://github.com/fermyon/spin"
15-
rust-version = "1.79"
15+
rust-version = "1.81"
1616

1717
[dependencies]
1818
anyhow = { workspace = true }

tests/integration.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ mod integration_tests {
9898

9999
#[test]
100100
#[cfg(feature = "extern-dependencies-tests")]
101+
#[allow(dependency_on_unit_never_type_fallback)]
101102
/// Test that basic redis trigger support works
102103
fn redis_smoke_test() -> anyhow::Result<()> {
103104
use anyhow::Context;

tests/testcases/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ pub fn http_smoke_test_template_with_route(
204204

205205
/// Run a smoke test for a `spin new` redis template
206206
#[cfg(feature = "extern-dependencies-tests")]
207+
#[allow(dependency_on_unit_never_type_fallback)]
207208
pub fn redis_smoke_test_template(
208209
template_name: &str,
209210
template_url: Option<&str>,

0 commit comments

Comments
 (0)