From c5245e199f7345646cd4749e7e3f5be3da245e4b Mon Sep 17 00:00:00 2001 From: Samuel Burnham <45365069+samuelburnham@users.noreply.github.com> Date: Wed, 25 Sep 2024 10:57:02 -0400 Subject: [PATCH] clippy --- .github/workflows/ci.yml | 2 +- Cargo.toml | 5 +++-- chain-server/src/client.rs | 1 + chain-server/src/server.rs | 1 + 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f3b2b608..cd0c9fe47 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ concurrency: jobs: linux: - runs-on: buildjet-16vcpu-ubuntu-2204 + runs-on: warp-ubuntu-2404-x64-16x steps: - uses: actions/checkout@v4 with: diff --git a/Cargo.toml b/Cargo.toml index 8b5066697..dbaf0f4a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ repository.workspace = true authors.workspace = true homepage.workspace = true license.workspace = true -rust-version = "1.74.1" # allows msrv verify to work in CI +rust-version = "1.79" # allows msrv verify to work in CI [dependencies] anyhow = { workspace = true } @@ -146,8 +146,9 @@ tracing-subscriber = "0.3.17" authors = ["Argument Engineering "] edition = "2021" license = "MIT OR Apache-2.0" +homepage = "https://argument.xyz" repository = "https://github.com/argumentcomputer/lurk-beta" -rust-version = "1.74.1" +rust-version = "1.79" [[bin]] name = "lurk" diff --git a/chain-server/src/client.rs b/chain-server/src/client.rs index fa4530f49..69052dbf8 100644 --- a/chain-server/src/client.rs +++ b/chain-server/src/client.rs @@ -26,6 +26,7 @@ use lurk::{ pub mod chain_prover { #![allow(unreachable_pub)] + #![allow(clippy::derive_partial_eq_without_eq)] tonic::include_proto!("chain_prover"); } diff --git a/chain-server/src/server.rs b/chain-server/src/server.rs index f2dad2872..146fc7bca 100644 --- a/chain-server/src/server.rs +++ b/chain-server/src/server.rs @@ -42,6 +42,7 @@ use lurk::{ pub mod chain_prover { #![allow(unreachable_pub)] + #![allow(clippy::derive_partial_eq_without_eq)] tonic::include_proto!("chain_prover"); }