Update build

- Use default github rust version
- Stop using clippy action, it has been unmaintained since 2020
- No longer enforce nightly fmt rules in CI (they can still be enforced
  in commit hooks or nix
- No longer use cargo test unstable options
- Run `cargo clippy --fix` to fix new errors
This commit is contained in:
ancient123
2023-07-17 09:25:39 -06:00
parent 3efb08374d
commit b13a607b51
4 changed files with 13 additions and 38 deletions

View File

@@ -453,7 +453,7 @@ where
&mut transcript,
)?;
let zero_check_point = zero_check_sub_claim.point.clone();
let zero_check_point = zero_check_sub_claim.point;
// check zero check subclaim
let f_eval = eval_f(&vk.params.gate_func, selector_evals, witness_gate_evals)?;
@@ -485,8 +485,7 @@ where
let perm_check_point = perm_check_sub_claim
.product_check_sub_claim
.zero_check_sub_claim
.point
.clone();
.point;
let alpha = perm_check_sub_claim.product_check_sub_claim.alpha;
let (beta, gamma) = perm_check_sub_claim.challenges;