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"); }