Skip to content

Commit

Permalink
Merge pull request #1 from pluto/mpz-pluto-dependancy
Browse files Browse the repository at this point in the history
dependancy fix
  • Loading branch information
Autoparallel authored Jun 19, 2024
2 parents b68ef49 + a9e18a2 commit 15f348c
Show file tree
Hide file tree
Showing 9 changed files with 32 additions and 32 deletions.
4 changes: 2 additions & 2 deletions components/aead/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions components/cipher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions components/integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
10 changes: 5 additions & 5 deletions components/key-exchange/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions components/point-addition/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions components/prf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions components/tls/tls-mpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions components/universal-hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
12 changes: 6 additions & 6 deletions tlsn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 15f348c

Please sign in to comment.