Skip to content

Commit

Permalink
add clippy back
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-maron committed Feb 12, 2024
1 parent b302de8 commit 5d50bd9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ jobs:
- uses: actions/checkout@v4
- run: sudo apt-get install capnproto
- run: cargo fmt
- run: cargo test
- run: cargo test
- run: cargo clippy
4 changes: 2 additions & 2 deletions client/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
//! We spawn two clients. In a single-broker run, this lets them connect
//! cross-broker.
use std::{marker::PhantomData, sync::Arc, time::Duration};
use std::{marker::PhantomData, sync::Arc};

use client::{Client, Config};
use proto::{
Expand All @@ -14,7 +14,7 @@ use proto::{

use jf_primitives::signatures::bls_over_bn254::BLSOverBN254CurveSignatureScheme as BLS;
use rand::{rngs::StdRng, SeedableRng};
use tokio::{join, spawn, time::sleep};
use tokio::{join, spawn};

#[tokio::main]
async fn main() -> Result<()> {
Expand Down

0 comments on commit 5d50bd9

Please sign in to comment.