From a9e18a2dc9e0f46a9a6b0b568e167e917e53fe7a Mon Sep 17 00:00:00 2001 From: Waylon Jepsen Date: Wed, 19 Jun 2024 14:38:51 -0600 Subject: [PATCH] dependancy fix --- components/aead/Cargo.toml | 4 ++-- components/cipher/Cargo.toml | 4 ++-- components/integration-tests/Cargo.toml | 6 +++--- components/key-exchange/Cargo.toml | 10 +++++----- components/point-addition/Cargo.toml | 8 ++++---- components/prf/Cargo.toml | 4 ++-- components/tls/tls-mpc/Cargo.toml | 8 ++++---- components/universal-hash/Cargo.toml | 8 ++++---- tlsn/Cargo.toml | 12 ++++++------ 9 files changed, 32 insertions(+), 32 deletions(-) diff --git a/components/aead/Cargo.toml b/components/aead/Cargo.toml index 6db6896f28..b7abd538ec 100644 --- a/components/aead/Cargo.toml +++ b/components/aead/Cargo.toml @@ -25,8 +25,8 @@ 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 = "9f7403b" } -mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } +mpz-core = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } +mpz-garble = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" } async-trait = "0.1" diff --git a/components/cipher/Cargo.toml b/components/cipher/Cargo.toml index 914adec09b..a8a4744678 100644 --- a/components/cipher/Cargo.toml +++ b/components/cipher/Cargo.toml @@ -4,8 +4,8 @@ resolver = "2" [workspace.dependencies] # tlsn -mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } -mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } +mpz-circuits = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } +mpz-garble = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } tlsn-utils = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" } # crypto diff --git a/components/integration-tests/Cargo.toml b/components/integration-tests/Cargo.toml index 8db1455d2f..efd22e1eb4 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 = "9f7403b" } -mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } -mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } +mpz-garble = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } +mpz-ot = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } +mpz-share-conversion = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } tlsn-block-cipher = { path = "../cipher/block-cipher" } tlsn-stream-cipher = { path = "../cipher/stream-cipher" } tlsn-universal-hash = { path = "../universal-hash" } diff --git a/components/key-exchange/Cargo.toml b/components/key-exchange/Cargo.toml index 788dccbf81..7f35077a96 100644 --- a/components/key-exchange/Cargo.toml +++ b/components/key-exchange/Cargo.toml @@ -17,12 +17,12 @@ tracing = ["dep:tracing", "tlsn-point-addition/tracing"] mock = [] [dependencies] -mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } -mpz-fields = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } -mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } -mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } +mpz-garble = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } +mpz-fields = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } +mpz-ot = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } +mpz-circuits = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } 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 = "9f7403b" } +mpz-share-conversion-core = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } 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 f8fe003a24..de4041eeb9 100644 --- a/components/point-addition/Cargo.toml +++ b/components/point-addition/Cargo.toml @@ -17,10 +17,10 @@ mock = ["dep:mpz-core"] tracing = ["dep:tracing"] [dependencies] -mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b", optional = true } -mpz-fields = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } -mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } -mpz-share-conversion-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } +mpz-core = { git = "https://github.com/pluto/mpz", rev = "9f7403b", optional = true } +mpz-fields = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } +mpz-share-conversion = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } +mpz-share-conversion-core = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } 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 a72c581c01..c868b8fa2a 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 = "9f7403b" } -mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } +mpz-circuits = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } +mpz-garble = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } # async async-trait = "0.1" diff --git a/components/tls/tls-mpc/Cargo.toml b/components/tls/tls-mpc/Cargo.toml index d63dadaf60..cfad8c527c 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 = "9f7403b" } -mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } -mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } +mpz-core = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } +mpz-garble = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } +mpz-share-conversion = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } tlsn-block-cipher = { path = "../../cipher/block-cipher" } tlsn-stream-cipher = { path = "../../cipher/stream-cipher" } @@ -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 = "9f7403b" } +mpz-ot = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } uid-mux = { path = "../../uid-mux" } tracing-subscriber.workspace = true diff --git a/components/universal-hash/Cargo.toml b/components/universal-hash/Cargo.toml index 8e8c9ebce2..c6b0d6a4b1 100644 --- a/components/universal-hash/Cargo.toml +++ b/components/universal-hash/Cargo.toml @@ -16,10 +16,10 @@ mock = [] [dependencies] # tlsn -mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } -mpz-fields = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } -mpz-share-conversion-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } -mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } +mpz-core = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } +mpz-fields = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } +mpz-share-conversion-core = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } +mpz-share-conversion = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } # async async-trait = "0.1" diff --git a/tlsn/Cargo.toml b/tlsn/Cargo.toml index 13d59e5fc0..a65d4406d2 100644 --- a/tlsn/Cargo.toml +++ b/tlsn/Cargo.toml @@ -31,12 +31,12 @@ 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 = "9f7403b" } -mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } -mpz-garble-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } -mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } -mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } -mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "9f7403b" } +mpz-core = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } +mpz-circuits = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } +mpz-garble-core = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } +mpz-garble = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } +mpz-ot = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } +mpz-share-conversion = { git = "https://github.com/pluto/mpz", rev = "9f7403b" } futures = "0.3" tokio-util = "0.7"