chore: bump deps (#704)

This commit is contained in:
sinu.eth
2025-03-03 11:40:31 -08:00
committed by GitHub
parent be0be19018
commit c384a393bf
4 changed files with 53 additions and 29 deletions

View File

@@ -62,27 +62,27 @@ tlsn-tls-backend = { path = "crates/tls/backend" }
tlsn-tls-client = { path = "crates/tls/client" }
tlsn-tls-client-async = { path = "crates/tls/client-async" }
tlsn-tls-core = { path = "crates/tls/core" }
tlsn-utils = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "8555275" }
tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "8555275" }
tlsn-utils = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "425614e" }
tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "425614e" }
tlsn-verifier = { path = "crates/verifier" }
mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", branch = "alpha.1" }
mpz-memory-core = { git = "https://github.com/privacy-scaling-explorations/mpz", branch = "alpha.1" }
mpz-common = { git = "https://github.com/privacy-scaling-explorations/mpz", branch = "alpha.1" }
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", branch = "alpha.1" }
mpz-vm-core = { git = "https://github.com/privacy-scaling-explorations/mpz", branch = "alpha.1" }
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", branch = "alpha.1" }
mpz-garble-core = { git = "https://github.com/privacy-scaling-explorations/mpz", branch = "alpha.1" }
mpz-ole = { git = "https://github.com/privacy-scaling-explorations/mpz", branch = "alpha.1" }
mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", branch = "alpha.1" }
mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", branch = "alpha.1" }
mpz-fields = { git = "https://github.com/privacy-scaling-explorations/mpz", branch = "alpha.1" }
mpz-zk = { git = "https://github.com/privacy-scaling-explorations/mpz", branch = "alpha.1" }
mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", tag = "v0.1.0-alpha.1" }
mpz-memory-core = { git = "https://github.com/privacy-scaling-explorations/mpz", tag = "v0.1.0-alpha.1" }
mpz-common = { git = "https://github.com/privacy-scaling-explorations/mpz", tag = "v0.1.0-alpha.1" }
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", tag = "v0.1.0-alpha.1" }
mpz-vm-core = { git = "https://github.com/privacy-scaling-explorations/mpz", tag = "v0.1.0-alpha.1" }
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", tag = "v0.1.0-alpha.1" }
mpz-garble-core = { git = "https://github.com/privacy-scaling-explorations/mpz", tag = "v0.1.0-alpha.1" }
mpz-ole = { git = "https://github.com/privacy-scaling-explorations/mpz", tag = "v0.1.0-alpha.1" }
mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", tag = "v0.1.0-alpha.1" }
mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", tag = "v0.1.0-alpha.1" }
mpz-fields = { git = "https://github.com/privacy-scaling-explorations/mpz", tag = "v0.1.0-alpha.1" }
mpz-zk = { git = "https://github.com/privacy-scaling-explorations/mpz", tag = "v0.1.0-alpha.1" }
serio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "8555275" }
spansy = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "8555275" }
uid-mux = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "8555275" }
websocket-relay = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "8555275" }
serio = { version = "0.2" }
spansy = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "425614e" }
uid-mux = { version = "0.2" }
websocket-relay = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "425614e" }
aes = { version = "0.8" }
aes-gcm = { version = "0.9" }
@@ -143,7 +143,7 @@ tokio-util = { version = "0.7" }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3" }
uuid = { version = "1.4" }
web-spawn = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "2d93c56" }
web-spawn = { version = "0.1" }
web-time = { version = "0.2" }
webpki = { version = "0.22" }
webpki-roots = { version = "0.26" }

View File

@@ -55,7 +55,7 @@ impl Cipher for Aes128 {
let output = vm
.call(
Call::new(circuit::AES128_ECB.clone())
Call::builder(circuit::AES128_ECB.clone())
.arg(key)
.arg(input)
.build()
@@ -91,7 +91,7 @@ impl Cipher for Aes128 {
let output = vm
.call(
Call::new(circuit::AES128_CTR.clone())
Call::builder(circuit::AES128_CTR.clone())
.arg(key)
.arg(iv)
.arg(explicit_nonce)
@@ -145,7 +145,7 @@ impl Cipher for Aes128 {
.map(|(explicit_nonce, counter)| {
let output = vm
.call(
Call::new(circuit::AES128_CTR.clone())
Call::builder(circuit::AES128_CTR.clone())
.arg(key)
.arg(iv)
.arg(explicit_nonce)

View File

@@ -400,7 +400,13 @@ mod tests {
leader.commit(msg).unwrap();
let ct: Array<U8, 16> = leader
.call(Call::new(AES128.clone()).arg(key).arg(msg).build().unwrap())
.call(
Call::builder(AES128.clone())
.arg(key)
.arg(msg)
.build()
.unwrap(),
)
.unwrap();
let ct = leader.decode(ct).unwrap();
@@ -422,7 +428,13 @@ mod tests {
follower.commit(msg).unwrap();
let ct: Array<U8, 16> = follower
.call(Call::new(AES128.clone()).arg(key).arg(msg).build().unwrap())
.call(
Call::builder(AES128.clone())
.arg(key)
.arg(msg)
.build()
.unwrap(),
)
.unwrap();
let ct = follower.decode(ct).unwrap();
@@ -478,7 +490,13 @@ mod tests {
leader.commit(msg).unwrap();
let ct: Array<U8, 16> = leader
.call(Call::new(AES128.clone()).arg(key).arg(msg).build().unwrap())
.call(
Call::builder(AES128.clone())
.arg(key)
.arg(msg)
.build()
.unwrap(),
)
.unwrap();
let ct = leader.decode(ct).unwrap();
@@ -500,7 +518,13 @@ mod tests {
follower.commit(msg).unwrap();
let ct: Array<U8, 16> = follower
.call(Call::new(AES128.clone()).arg(key).arg(msg).build().unwrap())
.call(
Call::builder(AES128.clone())
.arg(key)
.arg(msg)
.build()
.unwrap(),
)
.unwrap();
drop(follower.decode(ct).unwrap());

View File

@@ -145,7 +145,7 @@ impl MpcPrf {
Array<U32, 8>,
) = vm
.call(
Call::new(circuits.session_keys.clone())
Call::builder(circuits.session_keys.clone())
.arg(pms)
.arg(client_random)
.arg(server_random)
@@ -166,7 +166,7 @@ impl MpcPrf {
let cf_vd = vm
.call(
Call::new(circuits.client_vd.clone())
Call::builder(circuits.client_vd.clone())
.arg(ms_outer_hash_state)
.arg(ms_inner_hash_state)
.arg(cf_hash)
@@ -180,7 +180,7 @@ impl MpcPrf {
let sf_vd = vm
.call(
Call::new(circuits.server_vd.clone())
Call::builder(circuits.server_vd.clone())
.arg(ms_outer_hash_state)
.arg(ms_inner_hash_state)
.arg(sf_hash)