From c7abc8cecded0ba1b24faaba1d05a439b982c9f2 Mon Sep 17 00:00:00 2001 From: "sinu.eth" <65924192+sinui0@users.noreply.github.com> Date: Tue, 13 Feb 2024 09:37:13 -0800 Subject: [PATCH] chore: bump deps (#430) * chore: bump tlsn-utils version * chore: bump mpz version * bump mpz --- components/aead/Cargo.toml | 6 +++--- components/cipher/Cargo.toml | 6 +++--- components/integration-tests/Cargo.toml | 8 ++++---- components/key-exchange/Cargo.toml | 10 +++++----- components/point-addition/Cargo.toml | 6 +++--- components/prf/Cargo.toml | 4 ++-- components/prf/hmac-sha256/Cargo.toml | 2 +- components/tls/tls-mpc/Cargo.toml | 10 +++++----- components/uid-mux/Cargo.toml | 2 +- components/universal-hash/Cargo.toml | 6 +++--- tlsn/Cargo.toml | 18 +++++++++--------- 11 files changed, 39 insertions(+), 39 deletions(-) diff --git a/components/aead/Cargo.toml b/components/aead/Cargo.toml index 44dd7c850..21d560207 100644 --- a/components/aead/Cargo.toml +++ b/components/aead/Cargo.toml @@ -25,9 +25,9 @@ tracing = [ tlsn-block-cipher = { path = "../cipher/block-cipher" } tlsn-stream-cipher = { path = "../cipher/stream-cipher" } tlsn-universal-hash = { path = "../universal-hash" } -mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } -mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } -tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "33052c6" } +mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } +mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } +tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" } async-trait = "0.1" derive_builder = "0.12" diff --git a/components/cipher/Cargo.toml b/components/cipher/Cargo.toml index 101607e77..9d62d7f38 100644 --- a/components/cipher/Cargo.toml +++ b/components/cipher/Cargo.toml @@ -4,9 +4,9 @@ resolver = "2" [workspace.dependencies] # tlsn -mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } -mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } -tlsn-utils = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "33052c6" } +mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } +mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } +tlsn-utils = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" } # crypto aes = "0.8" diff --git a/components/integration-tests/Cargo.toml b/components/integration-tests/Cargo.toml index f75194ec6..739241bb6 100644 --- a/components/integration-tests/Cargo.toml +++ b/components/integration-tests/Cargo.toml @@ -13,9 +13,9 @@ lto = true [dev-dependencies] -mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } -mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } -mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } +mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } +mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } +mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } tlsn-block-cipher = { path = "../cipher/block-cipher" } tlsn-stream-cipher = { path = "../cipher/stream-cipher" } tlsn-universal-hash = { path = "../universal-hash" } @@ -23,7 +23,7 @@ tlsn-aead = { path = "../aead" } tlsn-key-exchange = { path = "../key-exchange" } tlsn-point-addition = { path = "../point-addition" } tlsn-hmac-sha256 = { path = "../prf/hmac-sha256" } -tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "33052c6" } +tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" } uid-mux = { path = "../uid-mux" } diff --git a/components/key-exchange/Cargo.toml b/components/key-exchange/Cargo.toml index 12163b733..c8b20f6e5 100644 --- a/components/key-exchange/Cargo.toml +++ b/components/key-exchange/Cargo.toml @@ -17,11 +17,11 @@ tracing = ["dep:tracing", "tlsn-point-addition/tracing"] mock = [] [dependencies] -mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } -mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } -mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } -tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "33052c6" } -mpz-share-conversion-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } +mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } +mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } +mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } +tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" } +mpz-share-conversion-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } tlsn-point-addition = { path = "../point-addition" } p256 = { version = "0.13", features = ["ecdh"] } async-trait = "0.1" diff --git a/components/point-addition/Cargo.toml b/components/point-addition/Cargo.toml index a51586374..ad117e81b 100644 --- a/components/point-addition/Cargo.toml +++ b/components/point-addition/Cargo.toml @@ -17,9 +17,9 @@ mock = ["dep:mpz-core"] tracing = ["dep:tracing"] [dependencies] -mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778", optional = true } -mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } -mpz-share-conversion-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } +mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f", optional = true } +mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } +mpz-share-conversion-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } p256 = { version = "0.13", features = ["arithmetic"] } tracing = { version = "0.1", optional = true } async-trait = "0.1" diff --git a/components/prf/Cargo.toml b/components/prf/Cargo.toml index 40e58499b..7d41a8fd8 100644 --- a/components/prf/Cargo.toml +++ b/components/prf/Cargo.toml @@ -4,8 +4,8 @@ resolver = "2" [workspace.dependencies] # tlsn -mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } -mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } +mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } +mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } # async async-trait = "0.1" diff --git a/components/prf/hmac-sha256/Cargo.toml b/components/prf/hmac-sha256/Cargo.toml index 763281101..cbf4688d3 100644 --- a/components/prf/hmac-sha256/Cargo.toml +++ b/components/prf/hmac-sha256/Cargo.toml @@ -18,7 +18,7 @@ mock = [] [dependencies] tlsn-hmac-sha256-circuits = { path = "../hmac-sha256-circuits" } -tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "33052c6" } +tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" } mpz-garble.workspace = true mpz-circuits.workspace = true diff --git a/components/tls/tls-mpc/Cargo.toml b/components/tls/tls-mpc/Cargo.toml index 21170ea31..6f9b88938 100644 --- a/components/tls/tls-mpc/Cargo.toml +++ b/components/tls/tls-mpc/Cargo.toml @@ -30,9 +30,9 @@ tracing = [ tlsn-tls-core = { path = "../tls-core", features = ["serde"] } tlsn-tls-backend = { path = "../tls-backend" } -mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } -mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } -mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } +mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } +mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } +mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } tlsn-block-cipher = { path = "../../cipher/block-cipher" } tlsn-stream-cipher = { path = "../../cipher/stream-cipher" } @@ -42,7 +42,7 @@ tlsn-key-exchange = { path = "../../key-exchange" } tlsn-point-addition = { path = "../../point-addition" } tlsn-hmac-sha256 = { path = "../../prf/hmac-sha256" } -tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "33052c6" } +tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" } p256.workspace = true rand.workspace = true @@ -59,7 +59,7 @@ ludi = { git = "https://github.com/sinui0/ludi", rev = "b590de5" } tlsn-tls-client = { path = "../tls-client" } tlsn-tls-client-async = { path = "../tls-client-async" } tls-server-fixture = { path = "../tls-server-fixture" } -mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } +mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } uid-mux = { path = "../../uid-mux" } tracing-subscriber.workspace = true diff --git a/components/uid-mux/Cargo.toml b/components/uid-mux/Cargo.toml index f23cfa0ae..fba4bf200 100644 --- a/components/uid-mux/Cargo.toml +++ b/components/uid-mux/Cargo.toml @@ -12,7 +12,7 @@ edition = "2021" tracing = ["dep:tracing"] [dependencies] -tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "33052c6" } +tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" } async-trait = "0.1" futures = "0.3" diff --git a/components/universal-hash/Cargo.toml b/components/universal-hash/Cargo.toml index 8f7e138db..c35ed4287 100644 --- a/components/universal-hash/Cargo.toml +++ b/components/universal-hash/Cargo.toml @@ -16,9 +16,9 @@ mock = [] [dependencies] # tlsn -mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } -mpz-share-conversion-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } -mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } +mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } +mpz-share-conversion-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } +mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } # async async-trait = "0.1" diff --git a/tlsn/Cargo.toml b/tlsn/Cargo.toml index 311593e91..aec046efc 100644 --- a/tlsn/Cargo.toml +++ b/tlsn/Cargo.toml @@ -27,16 +27,16 @@ tlsn-tls-client-async = { path = "../components/tls/tls-client-async" } tls-server-fixture = { path = "../components/tls/tls-server-fixture" } uid-mux = { path = "../components/uid-mux" } -tlsn-utils = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "33052c6" } -tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "33052c6" } -spansy = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "33052c6" } +tlsn-utils = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" } +tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" } +spansy = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" } -mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } -mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } -mpz-garble-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } -mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } -mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } -mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" } +mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } +mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } +mpz-garble-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } +mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } +mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } +mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" } futures = "0.3" tokio-util = "0.7"