Skip to content
GitHub Actions / Clippy (beta) failed Mar 30, 2024 in 1s

Clippy (beta)

4 errors

Details

Results

Message level Amount
Internal compiler error 0
Error 4
Warning 0
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 failure on line 1594 in halo2_proofs/src/plonk/circuit.rs

See this annotation in the file changed.

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

failed to resolve: use of undeclared crate or module `fmt`

error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
    --> halo2_proofs/src/plonk/circuit.rs:1594:50
     |
1594 |     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
     |                                                  ^^^ use of undeclared crate or module `fmt`
     |
help: consider importing one of these items
     |
1    + use ark_std::fmt;
     |
1    + use core::fmt;
     |
1    + use std::fmt;
     |

Check failure on line 1594 in halo2_proofs/src/plonk/circuit.rs

See this annotation in the file changed.

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

failed to resolve: use of undeclared crate or module `fmt`

error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
    --> halo2_proofs/src/plonk/circuit.rs:1594:27
     |
1594 |     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
     |                           ^^^ use of undeclared crate or module `fmt`
     |
help: consider importing one of these items
     |
1    + use ark_std::fmt;
     |
1    + use core::fmt;
     |
1    + use std::fmt;
     |

Check failure on line 1593 in halo2_proofs/src/plonk/circuit.rs

See this annotation in the file changed.

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

failed to resolve: use of undeclared crate or module `fmt`

error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
    --> halo2_proofs/src/plonk/circuit.rs:1593:57
     |
1593 | impl<F: Field> fmt::Debug for LookupTracker<F> where F: fmt::Debug {
     |                                                         ^^^ use of undeclared crate or module `fmt`
     |
help: consider importing one of these items
     |
1    + use ark_std::fmt;
     |
1    + use core::fmt;
     |
1    + use std::fmt;
     |

Check failure on line 1593 in halo2_proofs/src/plonk/circuit.rs

See this annotation in the file changed.

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

failed to resolve: use of undeclared crate or module `fmt`

error[E0433]: failed to resolve: use of undeclared crate or module `fmt`
    --> halo2_proofs/src/plonk/circuit.rs:1593:16
     |
1593 | impl<F: Field> fmt::Debug for LookupTracker<F> where F: fmt::Debug {
     |                ^^^ use of undeclared crate or module `fmt`
     |
help: consider importing one of these items
     |
1    + use ark_std::fmt;
     |
1    + use core::fmt;
     |
1    + use std::fmt;
     |