Skip to content

Commit 69fa84f

Browse files
Merge branch 'matthias/format-like-ceno' into matthias/feat/goldilocks-spartan
2 parents 1f4b166 + 8969dde commit 69fa84f

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
for cargo_toml in $(git ls-files '**/Cargo.toml'); do
5252
(
5353
cd "$(dirname ${cargo_toml})"
54-
cargo fmt --check
54+
cargo +nightly fmt --check
5555
cargo check --all-targets
5656
)
5757
done

circ_blocks/src/ir/opt/inline.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ use fxhash::FxHashSet;
77
/// This is a tool for sweeping a list of equations, some of which define new variables as
88
/// functions of previous ones, and eliminating these new variables, by substituting them
99
/// elsewhere.
10-
///
1110
pub struct Inliner<'a> {
1211
/// Map from variables to their values.
1312
/// Invariant: no key variable in in any value variable.

circ_blocks/src/target/ilp/trans.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//! Translation from IR to MILP
2-
//!
32
43
// Needed until https://github.com/rust-lang/rust-clippy/pull/8183 is resolved.
54
#![allow(clippy::identity_op)]

0 commit comments

Comments
 (0)