Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelburnham committed Sep 25, 2024
1 parent 05eb13a commit 0748911
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down Expand Up @@ -146,8 +146,9 @@ tracing-subscriber = "0.3.17"
authors = ["Argument Engineering <[email protected]>"]
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"
Expand Down
1 change: 1 addition & 0 deletions chain-server/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}

Expand Down
1 change: 1 addition & 0 deletions chain-server/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}

Expand Down

0 comments on commit 0748911

Please sign in to comment.