Skip to content

remove debugging logs #362

remove debugging logs

remove debugging logs #362

GitHub Actions / Clippy (beta) failed Mar 13, 2024 in 0s

Clippy (beta)

1 error, 3 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 1
Warning 3
Note 0
Help 0

Versions

  • rustc 1.73.0-nightly (a6f8aa5a0 2023-08-11)
  • cargo 1.73.0-nightly (d78bbf4bd 2023-08-03)
  • clippy 0.1.73 (a6f8aa5 2023-08-11)

Annotations

Check warning on line 29 in halo2_proofs/src/dev.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy (beta)

unused import: `ff::BatchInvert`

warning: unused import: `ff::BatchInvert`
  --> halo2_proofs/src/dev.rs:29:5
   |
29 | use ff::BatchInvert;
   |     ^^^^^^^^^^^^^^^

Check warning on line 9 in halo2_proofs/src/dev.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy (beta)

unused imports: `Duration`, `Instant`

warning: unused imports: `Duration`, `Instant`
 --> halo2_proofs/src/dev.rs:9:17
  |
9 | use std::time::{Duration, Instant};
  |                 ^^^^^^^^  ^^^^^^^

Check warning on line 6 in halo2_proofs/src/dev.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy (beta)

unused import: `std::mem`

warning: unused import: `std::mem`
 --> halo2_proofs/src/dev.rs:6:5
  |
6 | use std::mem;
  |     ^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default

Check failure on line 29 in halo2_proofs/src/dev.rs

See this annotation in the file changed.

@github-actions github-actions / Clippy (beta)

the name `BatchInvert` is defined multiple times

error[E0252]: the name `BatchInvert` is defined multiple times
  --> halo2_proofs/src/dev.rs:29:5
   |
13 | use ff::BatchInvert;
   |     --------------- previous import of the trait `BatchInvert` here
...
29 | use ff::BatchInvert;
   |     ^^^^^^^^^^^^^^^ `BatchInvert` reimported here
   |
   = note: `BatchInvert` must be defined only once in the type namespace of this module