Skip to content

Commit 3905d93

Browse files
authored
chore: clean up deps (tlsnotary#1048)
1 parent f8a67bc commit 3905d93

6 files changed

Lines changed: 5 additions & 10 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/components/deap/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ futures = { workspace = true }
1919
tokio = { workspace = true, features = ["sync"] }
2020

2121
[dev-dependencies]
22-
mpz-circuits-data = { workspace = true }
22+
mpz-circuits = { workspace = true, features = ["aes"] }
2323
mpz-garble = { workspace = true }
2424
mpz-ot = { workspace = true, features = ["ideal"] }
2525
mpz-zk = { workspace = true }

crates/components/deap/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ enum ErrorRepr {
382382

383383
#[cfg(test)]
384384
mod tests {
385-
use mpz_circuits_data::AES128;
385+
use mpz_circuits::AES128;
386386
use mpz_common::context::test_st_context;
387387
use mpz_core::Block;
388388
use mpz_garble::protocol::semihonest::{Evaluator, Garbler};

crates/mpc-tls/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ mpz-ole = { workspace = true }
3333
mpz-share-conversion = { workspace = true }
3434
mpz-vm-core = { workspace = true }
3535
mpz-memory-core = { workspace = true }
36-
mpz-circuits = { workspace = true }
3736

3837
ludi = { git = "https://github.com/sinui0/ludi", rev = "e511c3b", default-features = false }
3938
serio = { workspace = true }

crates/tlsn/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,9 @@ serio = { workspace = true, features = ["compat"] }
3030
uid-mux = { workspace = true, features = ["serio"] }
3131
web-spawn = { workspace = true, optional = true }
3232

33+
mpz-circuits = { workspace = true, features = ["aes"] }
3334
mpz-common = { workspace = true }
3435
mpz-core = { workspace = true }
35-
mpz-circuits = { workspace = true }
36-
mpz-circuits-data = { workspace = true }
3736
mpz-garble = { workspace = true }
3837
mpz-garble-core = { workspace = true }
3938
mpz-hash = { workspace = true }

crates/tlsn/src/transcript_internal/auth.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ use ctr::{
55
Ctr32BE,
66
cipher::{KeyIvInit, StreamCipher, StreamCipherSeek},
77
};
8-
use mpz_circuits::circuits::xor;
9-
use mpz_circuits_data::AES128;
8+
use mpz_circuits::{AES128, circuits::xor};
109
use mpz_core::bitvec::BitVec;
1110
use mpz_memory_core::{
1211
Array, DecodeFutureTyped, MemoryExt, Vector, ViewExt,

0 commit comments

Comments
 (0)