Skip to content

Commit

Permalink
Adapt dependency of mpz to new repo location
Browse files Browse the repository at this point in the history
  • Loading branch information
th4s committed Jul 27, 2023
1 parent fd07bf2 commit e2bc01b
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 29 deletions.
6 changes: 3 additions & 3 deletions components/actors/actor-ot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
mpz-ot-core = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-ot = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-core = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-ot-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils" }
async-trait = "0.1"
derive_builder = "0.11"
Expand Down
4 changes: 2 additions & 2 deletions components/aead/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ tracing = ["dep: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/tlsnotary/mpz", rev = "86f1687" }
mpz-garble = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils" }

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/tlsnotary/mpz", rev = "86f1687" }
mpz-garble = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
tlsn-utils = { git = "https://github.com/tlsnotary/tlsn-utils" }

# crypto
Expand Down
4 changes: 2 additions & 2 deletions components/integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ edition = "2021"


[dev-dependencies]
mpz-garble = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-share-conversion = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
tlsn-block-cipher = { path = "../cipher/block-cipher" }
tlsn-stream-cipher = { path = "../cipher/stream-cipher" }
tlsn-universal-hash = { path = "../universal-hash" }
Expand Down
8 changes: 4 additions & 4 deletions components/key-exchange/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ tracing = ["dep:tracing"]
mock = []

[dependencies]
mpz-garble = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-ot = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-circuits = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils" }
mpz-share-conversion-core = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-share-conversion-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
tlsn-point-addition = { path = "../point-addition" }
p256 = { version = "0.13", features = ["ecdh"] }
async-trait = "0.1"
Expand Down
6 changes: 3 additions & 3 deletions components/point-addition/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ mock = ["dep:mpz-core"]
tracing = ["dep:tracing"]

[dependencies]
mpz-core = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687", optional = true }
mpz-share-conversion = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-share-conversion-core = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687", optional = true }
mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
mpz-share-conversion-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
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/tlsnotary/mpz", rev = "86f1687" }
mpz-garble = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }

# async
async-trait = "0.1"
Expand Down
6 changes: 3 additions & 3 deletions components/tls/tls-mpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ tracing = ["dep:tracing"]
tlsn-tls-core = { path = "../tls-core", features = ["serde"] }
tlsn-tls-backend = { path = "../tls-backend" }

mpz-core = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-garble = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-share-conversion = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }

tlsn-block-cipher = { path = "../../cipher/block-cipher" }
tlsn-stream-cipher = { path = "../../cipher/stream-cipher" }
Expand Down
6 changes: 3 additions & 3 deletions components/universal-hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ mock = []

[dependencies]
# tlsn
mpz-core = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-share-conversion-core = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-share-conversion = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
mpz-share-conversion-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }

# async
async-trait = "0.1"
Expand Down
10 changes: 5 additions & 5 deletions tlsn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ uid-mux = { path = "../components/uid-mux" }
tlsn-utils = { git = "https://github.com/tlsnotary/tlsn-utils" }
tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils" }

mpz-core = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-circuits = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-garble-core = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-garble = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-share-conversion = { git = "https://github.com/tlsnotary/mpz", rev = "86f1687" }
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
mpz-garble-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }
mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "86f1687" }


futures = "0.3"
Expand Down

0 comments on commit e2bc01b

Please sign in to comment.