Skip to content

Commit

Permalink
build(deps): update itertools to v0.14
Browse files Browse the repository at this point in the history
  • Loading branch information
dkales committed Feb 21, 2025
1 parent 17c970c commit 982de30
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 12 deletions.
29 changes: 19 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ figment = { version = "0.10.19", features = ["toml", "env"] }
futures = "0.3.30"
hex-literal = "0.4.1"
intmap = "2.0.0"
itertools = "0.13.0"
itertools = "0.14.0"
noirc-abi = { version = "1.0.0-beta.3", git = "https://github.com/noir-lang/noir/", tag = "v1.0.0-beta.3", package = "noirc_abi" }
noirc-artifacts = { version = "1.0.0-beta.3", git = "https://github.com/noir-lang/noir/", tag = "v1.0.0-beta.3", package = "noirc_artifacts" }
num-bigint = { version = "0.4.5" }
Expand Down
2 changes: 1 addition & 1 deletion mpc-core/src/protocols/rep3/binary.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ pub fn shift_l_public_by_shared<F: PrimeField, N: Rep3Network>(
let mut contexts = [io_0, io_1, io_2, io_3, io_4, io_5, io_6, io_7];
let party_id = io_context.id;
let mut individual_bit_shares = Vec::with_capacity(8);
for (i, context) in izip!((0..8), contexts.iter_mut()) {
for (i, context) in izip!(0..8, contexts.iter_mut()) {
let bit = Rep3BigUintShare::new(
(shared.a.clone() >> i) & BigUint::one(),
(shared.b.clone() >> i) & BigUint::one(),
Expand Down

0 comments on commit 982de30

Please sign in to comment.