mirror of
https://github.com/tlsnotary/tlsn.git
synced 2026-01-09 21:38:00 -05:00
chore: clean up deps (#1048)
This commit is contained in:
4
Cargo.lock
generated
4
Cargo.lock
generated
@@ -7182,7 +7182,6 @@ dependencies = [
|
||||
"http-body-util",
|
||||
"hyper",
|
||||
"mpz-circuits",
|
||||
"mpz-circuits-data",
|
||||
"mpz-common",
|
||||
"mpz-core",
|
||||
"mpz-garble",
|
||||
@@ -7308,7 +7307,7 @@ version = "0.1.0-alpha.14-pre"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"futures",
|
||||
"mpz-circuits-data",
|
||||
"mpz-circuits",
|
||||
"mpz-common",
|
||||
"mpz-core",
|
||||
"mpz-garble",
|
||||
@@ -7506,7 +7505,6 @@ dependencies = [
|
||||
"generic-array",
|
||||
"ghash 0.5.1",
|
||||
"ludi",
|
||||
"mpz-circuits",
|
||||
"mpz-common",
|
||||
"mpz-core",
|
||||
"mpz-fields",
|
||||
|
||||
@@ -19,7 +19,7 @@ futures = { workspace = true }
|
||||
tokio = { workspace = true, features = ["sync"] }
|
||||
|
||||
[dev-dependencies]
|
||||
mpz-circuits-data = { workspace = true }
|
||||
mpz-circuits = { workspace = true, features = ["aes"] }
|
||||
mpz-garble = { workspace = true }
|
||||
mpz-ot = { workspace = true, features = ["ideal"] }
|
||||
mpz-zk = { workspace = true }
|
||||
|
||||
@@ -382,7 +382,7 @@ enum ErrorRepr {
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use mpz_circuits_data::AES128;
|
||||
use mpz_circuits::AES128;
|
||||
use mpz_common::context::test_st_context;
|
||||
use mpz_core::Block;
|
||||
use mpz_garble::protocol::semihonest::{Evaluator, Garbler};
|
||||
|
||||
@@ -33,7 +33,6 @@ mpz-ole = { workspace = true }
|
||||
mpz-share-conversion = { workspace = true }
|
||||
mpz-vm-core = { workspace = true }
|
||||
mpz-memory-core = { workspace = true }
|
||||
mpz-circuits = { workspace = true }
|
||||
|
||||
ludi = { git = "https://github.com/sinui0/ludi", rev = "e511c3b", default-features = false }
|
||||
serio = { workspace = true }
|
||||
|
||||
@@ -30,10 +30,9 @@ serio = { workspace = true, features = ["compat"] }
|
||||
uid-mux = { workspace = true, features = ["serio"] }
|
||||
web-spawn = { workspace = true, optional = true }
|
||||
|
||||
mpz-circuits = { workspace = true, features = ["aes"] }
|
||||
mpz-common = { workspace = true }
|
||||
mpz-core = { workspace = true }
|
||||
mpz-circuits = { workspace = true }
|
||||
mpz-circuits-data = { workspace = true }
|
||||
mpz-garble = { workspace = true }
|
||||
mpz-garble-core = { workspace = true }
|
||||
mpz-hash = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,7 @@ use ctr::{
|
||||
Ctr32BE,
|
||||
cipher::{KeyIvInit, StreamCipher, StreamCipherSeek},
|
||||
};
|
||||
use mpz_circuits::circuits::xor;
|
||||
use mpz_circuits_data::AES128;
|
||||
use mpz_circuits::{AES128, circuits::xor};
|
||||
use mpz_core::bitvec::BitVec;
|
||||
use mpz_memory_core::{
|
||||
Array, DecodeFutureTyped, MemoryExt, Vector, ViewExt,
|
||||
|
||||
Reference in New Issue
Block a user