From 07489112764aada832575fc682c5b81bc0e70c9d 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 --- Cargo.toml | 5 +++-- chain-server/src/client.rs | 1 + chain-server/src/server.rs | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8b5066697..fe84033d0 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.77.0" # 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.77.0" [[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"); }