From c85ddeb588782dfd5fca7df1b3a5ed5167a75b58 Mon Sep 17 00:00:00 2001 From: Lean Mendoza Date: Thu, 3 Oct 2024 15:03:38 -0300 Subject: [PATCH] fix cargo version --- .github/workflows/android-build.yml | 2 +- .github/workflows/ci.yml | 6 +++--- lib/src/dcl/js/fetch/mod.rs | 1 + 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/android-build.yml b/.github/workflows/android-build.yml index 4ea8d9ac..e9ccf3cf 100644 --- a/.github/workflows/android-build.yml +++ b/.github/workflows/android-build.yml @@ -29,7 +29,7 @@ jobs: - name: Set up Rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.78 + toolchain: 1.79 override: true components: clippy, rustfmt diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a1782a5..edc3cb84 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: 1.78 + toolchain: 1.79 override: true components: clippy, rustfmt - run: rustup component add rustfmt @@ -90,7 +90,7 @@ jobs: - name: Install stable toolchain uses: actions-rs/toolchain@v1 with: - toolchain: 1.78 + toolchain: 1.79 override: true components: llvm-tools-preview @@ -170,7 +170,7 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: 1.78 + toolchain: 1.79 override: true - name: Set up cargo cache diff --git a/lib/src/dcl/js/fetch/mod.rs b/lib/src/dcl/js/fetch/mod.rs index f79cf68c..df782931 100644 --- a/lib/src/dcl/js/fetch/mod.rs +++ b/lib/src/dcl/js/fetch/mod.rs @@ -59,6 +59,7 @@ impl FetchRequestsState { #[op2(async)] #[serde] +#[allow(clippy::too_many_arguments)] async fn op_fetch_custom( op_state: Rc>, #[string] method: String,