Skip to content

Commit

Permalink
Use latest rust-clacc
Browse files Browse the repository at this point in the history
  • Loading branch information
johnoliverdriscoll committed Sep 14, 2023
1 parent 4c66cbc commit 4cf2075
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 36 deletions.
89 changes: 56 additions & 33 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 @@ -11,7 +11,7 @@ http = "0.2.8"
hyper = {version = "0.14.23", features = ["client", "server", "http1", "tcp"]}
num_cpus = "1.14.0"
rand = "0.8.5"
rust-clacc = {version = "3.1.0", features = ["blake2", "gmp", "serde"]}
rust-clacc = {version = "3.2.0", features = ["gmp", "serde", "sha3"]}
rust-gmp-serde = {version = "0.5.0", features = ["serde_support"]}
serde = {version = "1.0.148", features = ["derive"]}
serde_json = "1.0.89"
Expand Down
2 changes: 1 addition & 1 deletion src/authority.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use clacc::{
Accumulator,
blake2::Map,
sha3::Shake128 as Map,
};
use gmp::mpz::Mpz;
use rand::RngCore;
Expand Down
2 changes: 1 addition & 1 deletion src/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use clacc::{
Accumulator,
Update,
Witness,
blake2::Map,
sha3::Shake128 as Map,
};
use gmp::mpz::Mpz;
use crossbeam::thread;
Expand Down

0 comments on commit 4cf2075

Please sign in to comment.