Skip to content

Commit c7abc8c

Browse files
authored
chore: bump deps (#430)
* chore: bump tlsn-utils version * chore: bump mpz version * bump mpz
1 parent 0d269ed commit c7abc8c

File tree

11 files changed

+39
-39
lines changed

11 files changed

+39
-39
lines changed

components/aead/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ tracing = [
2525
tlsn-block-cipher = { path = "../cipher/block-cipher" }
2626
tlsn-stream-cipher = { path = "../cipher/stream-cipher" }
2727
tlsn-universal-hash = { path = "../universal-hash" }
28-
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
29-
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
30-
tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "33052c6" }
28+
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
29+
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
30+
tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" }
3131

3232
async-trait = "0.1"
3333
derive_builder = "0.12"

components/cipher/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ resolver = "2"
44

55
[workspace.dependencies]
66
# tlsn
7-
mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
8-
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
9-
tlsn-utils = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "33052c6" }
7+
mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
8+
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
9+
tlsn-utils = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" }
1010

1111
# crypto
1212
aes = "0.8"

components/integration-tests/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ lto = true
1313

1414

1515
[dev-dependencies]
16-
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
17-
mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
18-
mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
16+
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
17+
mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
18+
mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
1919
tlsn-block-cipher = { path = "../cipher/block-cipher" }
2020
tlsn-stream-cipher = { path = "../cipher/stream-cipher" }
2121
tlsn-universal-hash = { path = "../universal-hash" }
2222
tlsn-aead = { path = "../aead" }
2323
tlsn-key-exchange = { path = "../key-exchange" }
2424
tlsn-point-addition = { path = "../point-addition" }
2525
tlsn-hmac-sha256 = { path = "../prf/hmac-sha256" }
26-
tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "33052c6" }
26+
tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" }
2727

2828
uid-mux = { path = "../uid-mux" }
2929

components/key-exchange/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ tracing = ["dep:tracing", "tlsn-point-addition/tracing"]
1717
mock = []
1818

1919
[dependencies]
20-
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
21-
mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
22-
mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
23-
tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "33052c6" }
24-
mpz-share-conversion-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
20+
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
21+
mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
22+
mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
23+
tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" }
24+
mpz-share-conversion-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
2525
tlsn-point-addition = { path = "../point-addition" }
2626
p256 = { version = "0.13", features = ["ecdh"] }
2727
async-trait = "0.1"

components/point-addition/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ mock = ["dep:mpz-core"]
1717
tracing = ["dep:tracing"]
1818

1919
[dependencies]
20-
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778", optional = true }
21-
mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
22-
mpz-share-conversion-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
20+
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f", optional = true }
21+
mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
22+
mpz-share-conversion-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
2323
p256 = { version = "0.13", features = ["arithmetic"] }
2424
tracing = { version = "0.1", optional = true }
2525
async-trait = "0.1"

components/prf/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ resolver = "2"
44

55
[workspace.dependencies]
66
# tlsn
7-
mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
8-
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
7+
mpz-circuits = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
8+
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
99

1010
# async
1111
async-trait = "0.1"

components/prf/hmac-sha256/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ mock = []
1818

1919
[dependencies]
2020
tlsn-hmac-sha256-circuits = { path = "../hmac-sha256-circuits" }
21-
tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "33052c6" }
21+
tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" }
2222
mpz-garble.workspace = true
2323
mpz-circuits.workspace = true
2424

components/tls/tls-mpc/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ tracing = [
3030
tlsn-tls-core = { path = "../tls-core", features = ["serde"] }
3131
tlsn-tls-backend = { path = "../tls-backend" }
3232

33-
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
34-
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
35-
mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
33+
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
34+
mpz-garble = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
35+
mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
3636

3737
tlsn-block-cipher = { path = "../../cipher/block-cipher" }
3838
tlsn-stream-cipher = { path = "../../cipher/stream-cipher" }
@@ -42,7 +42,7 @@ tlsn-key-exchange = { path = "../../key-exchange" }
4242
tlsn-point-addition = { path = "../../point-addition" }
4343
tlsn-hmac-sha256 = { path = "../../prf/hmac-sha256" }
4444

45-
tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "33052c6" }
45+
tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" }
4646

4747
p256.workspace = true
4848
rand.workspace = true
@@ -59,7 +59,7 @@ ludi = { git = "https://github.com/sinui0/ludi", rev = "b590de5" }
5959
tlsn-tls-client = { path = "../tls-client" }
6060
tlsn-tls-client-async = { path = "../tls-client-async" }
6161
tls-server-fixture = { path = "../tls-server-fixture" }
62-
mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
62+
mpz-ot = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
6363
uid-mux = { path = "../../uid-mux" }
6464

6565
tracing-subscriber.workspace = true

components/uid-mux/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ edition = "2021"
1212
tracing = ["dep:tracing"]
1313

1414
[dependencies]
15-
tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "33052c6" }
15+
tlsn-utils-aio = { git = "https://github.com/tlsnotary/tlsn-utils", rev = "51f313d" }
1616

1717
async-trait = "0.1"
1818
futures = "0.3"

components/universal-hash/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ mock = []
1616

1717
[dependencies]
1818
# tlsn
19-
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
20-
mpz-share-conversion-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
21-
mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "90a3778" }
19+
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
20+
mpz-share-conversion-core = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
21+
mpz-share-conversion = { git = "https://github.com/privacy-scaling-explorations/mpz", rev = "850636f" }
2222

2323
# async
2424
async-trait = "0.1"

0 commit comments

Comments
 (0)