Skip to content

Commit 4d01b36

Browse files
committed
Update Cargo.toml
1 parent f9f671e commit 4d01b36

File tree

8 files changed

+540
-373
lines changed

8 files changed

+540
-373
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ digest = "0.10.7"
4343
generic-array = "0.14.7"
4444
getrandom = "0.3.3"
4545
getset = "0.1.6"
46+
hex = "0.4.3"
4647
hex-literal = "1.0.0"
4748
either = "1.11.0"
4849
itertools = "0.14.0"

crates/examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ base64.workspace = true
2424
blake2.workspace = true
2525
jwt-simple.workspace = true
2626
sha2.workspace = true
27-
hex = "0.4"
27+
hex.workspace = true
2828
k256 = { workspace = true, features = ["arithmetic"] }
2929

3030
[dev-dependencies]

crates/examples/src/circuits/semaphore_ecdsa.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use anyhow::{Result, ensure};
22
use binius_frontend::{
33
circuits::semaphore_ecdsa::{
44
SemaphoreProofECDSA,
5-
circuit::IdentityECDSA,
5+
IdentityECDSA,
66
MerkleTree,
77
},
88
compiler::{CircuitBuilder, circuit::WitnessFiller},
@@ -117,8 +117,7 @@ impl ExampleCircuit for SemaphoreExample {
117117

118118
#[cfg(test)]
119119
mod tests {
120-
use super::*;
121-
use binius_frontend::circuits::semaphore_ecdsa::circuit::IdentityECDSA;
120+
use binius_frontend::circuits::semaphore_ecdsa::reference::IdentityECDSA;
122121

123122
#[test]
124123
fn test_examples_crate_identity_commitment() {

0 commit comments

Comments
 (0)