Skip to content

Commit c39cafd

Browse files
olegnnlovesh
authored andcommitted
Bump up versions
1 parent bbbc53b commit c39cafd

File tree

15 files changed

+50
-50
lines changed

15 files changed

+50
-50
lines changed

bbs_plus/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bbs_plus"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
@@ -19,10 +19,10 @@ ark-std.workspace = true
1919
digest.workspace = true
2020
rayon = {workspace = true, optional = true}
2121
itertools.workspace = true
22-
schnorr_pok = { version = "0.13.0", default-features = false, path = "../schnorr_pok" }
23-
dock_crypto_utils = { version = "0.14.0", default-features = false, path = "../utils" }
24-
oblivious_transfer_protocols = { version = "0.2.0", default-features = false, path = "../oblivious_transfer" }
25-
secret_sharing_and_dkg = { version = "0.6.0", default-features = false, path = "../secret_sharing_and_dkg" }
22+
schnorr_pok = { version = "0.14.0", default-features = false, path = "../schnorr_pok" }
23+
dock_crypto_utils = { version = "0.15.0", default-features = false, path = "../utils" }
24+
oblivious_transfer_protocols = { version = "0.3.0", default-features = false, path = "../oblivious_transfer" }
25+
secret_sharing_and_dkg = { version = "0.7.0", default-features = false, path = "../secret_sharing_and_dkg" }
2626
sha3 = { version = "0.10.6", default-features = false }
2727
serde.workspace = true
2828
serde_with.workspace = true

benches/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ authors.workspace = true
66
license.workspace = true
77

88
[dependencies]
9-
bbs_plus = { version = "0.15.0", default-features = false, path = "../bbs_plus" }
10-
schnorr_pok = { version = "0.13.0", default-features = false, path = "../schnorr_pok" }
11-
vb_accumulator = { version = "0.16.0", default-features = false, path = "../vb_accumulator" }
9+
bbs_plus = { version = "0.16.0", default-features = false, path = "../bbs_plus" }
10+
schnorr_pok = { version = "0.14.0", default-features = false, path = "../schnorr_pok" }
11+
vb_accumulator = { version = "0.17.0", default-features = false, path = "../vb_accumulator" }
1212
test_utils = { default-features = false, path = "../test_utils" }
1313
ark-ff.workspace = true
1414
ark-ec.workspace = true
@@ -18,8 +18,8 @@ serde.workspace = true
1818
serde_with.workspace = true
1919
blake2 = { version = "0.10", default-features = false }
2020
itertools.workspace = true
21-
coconut-crypto = { version = "0.4.0", default-features = false, path = "../coconut" }
22-
oblivious_transfer_protocols = { version = "0.2.0", default-features = false, path = "../oblivious_transfer" }
21+
coconut-crypto = { version = "0.5.0", default-features = false, path = "../coconut" }
22+
oblivious_transfer_protocols = { version = "0.3.0", default-features = false, path = "../oblivious_transfer" }
2323
dock_crypto_utils = { default-features = false, path = "../utils" }
2424
zeroize.workspace = true
2525

coconut/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "coconut-crypto"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
@@ -22,9 +22,9 @@ itertools.workspace = true
2222
zeroize.workspace = true
2323
serde_with.workspace = true
2424
rayon = { workspace = true, optional = true }
25-
utils = { package = "dock_crypto_utils", version = "0.14.0", default-features = false, path = "../utils" }
26-
schnorr_pok = { version = "0.13.0", default-features = false, path = "../schnorr_pok" }
27-
secret_sharing_and_dkg = { version = "0.6.0", default-features = false, path = "../secret_sharing_and_dkg" }
25+
utils = { package = "dock_crypto_utils", version = "0.15.0", default-features = false, path = "../utils" }
26+
schnorr_pok = { version = "0.14.0", default-features = false, path = "../schnorr_pok" }
27+
secret_sharing_and_dkg = { version = "0.7.0", default-features = false, path = "../secret_sharing_and_dkg" }
2828

2929
[dev-dependencies]
3030
blake2.workspace = true

compressed_sigma/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "compressed_sigma"
3-
version = "0.0.6"
3+
version = "0.0.7"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
@@ -15,7 +15,7 @@ ark-std.workspace = true
1515
ark-poly.workspace = true
1616
rayon = {workspace = true, optional = true}
1717
digest.workspace = true
18-
dock_crypto_utils = { version = "0.14.0", default-features = false, path = "../utils" }
18+
dock_crypto_utils = { version = "0.15.0", default-features = false, path = "../utils" }
1919

2020
[dev-dependencies]
2121
blake2.workspace = true

delegatable_credentials/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ digest.workspace = true
1717
rayon = {workspace = true, optional = true}
1818
serde.workspace = true
1919
serde_with.workspace = true
20-
dock_crypto_utils = { version = "0.14.0", default-features = false, path = "../utils" }
20+
dock_crypto_utils = { version = "0.15.0", default-features = false, path = "../utils" }
2121
zeroize.workspace = true
2222
num-bigint = { version = "0.4.0", default-features = false }
23-
schnorr_pok = { version = "0.13.0", default-features = false, path = "../schnorr_pok" }
23+
schnorr_pok = { version = "0.14.0", default-features = false, path = "../schnorr_pok" }
2424
[dependencies.num-integer]
2525
version = "0.1.42"
2626
features = ["i128"]

kvac/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ ark-std.workspace = true
1414
ark-serialize.workspace = true
1515
digest.workspace = true
1616
zeroize.workspace = true
17-
dock_crypto_utils = { version = "0.14.0", default-features = false, path = "../utils" }
18-
schnorr_pok = { version = "0.13.0", default-features = false, path = "../schnorr_pok" }
17+
dock_crypto_utils = { version = "0.15.0", default-features = false, path = "../utils" }
18+
schnorr_pok = { version = "0.14.0", default-features = false, path = "../schnorr_pok" }
1919
rayon = {workspace = true, optional = true}
2020

2121
[dev-dependencies]

legogroth16/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "legogroth16"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
authors = [ "arkworks contributors", "Dock.io" ]
55
description = "An implementation of the LegoGroth16, the Legosnark variant of Groth16 zkSNARK proof system"
66
repository.workspace = true
@@ -29,7 +29,7 @@ num-bigint = { version = "0.4", default-features = false, optional = true }
2929
log = "0.4"
3030
ark-groth16 = { workspace = true, optional = true }
3131
ark-snark = { version = "^0.4.0", default-features = false, optional = true }
32-
dock_crypto_utils = { version = "0.14.0", default-features = false, path = "../utils" }
32+
dock_crypto_utils = { version = "0.15.0", default-features = false, path = "../utils" }
3333

3434
[dev-dependencies]
3535
csv = { version = "1" }

oblivious_transfer/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oblivious_transfer_protocols"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
@@ -16,8 +16,8 @@ digest.workspace = true
1616
serde.workspace = true
1717
serde_with.workspace = true
1818
zeroize.workspace = true
19-
dock_crypto_utils = { version = "0.14.0", default-features = false, path = "../utils" }
20-
schnorr_pok = { version = "0.13.0", default-features = false, path = "../schnorr_pok" }
19+
dock_crypto_utils = { version = "0.15.0", default-features = false, path = "../utils" }
20+
schnorr_pok = { version = "0.14.0", default-features = false, path = "../schnorr_pok" }
2121
cipher = { version = "0.4.4", default-features = false, features = ["alloc"] }
2222
rayon = {workspace = true, optional = true}
2323
sha3 = { version = "0.10.6", default-features = false }

proof_system/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "proof_system"
3-
version = "0.21.0"
3+
version = "0.22.0"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
@@ -18,20 +18,20 @@ ark-ec.workspace = true
1818
ark-std.workspace = true
1919
digest.workspace = true
2020
rayon = {workspace = true, optional = true}
21-
bbs_plus = { version = "0.15.0", default-features = false, path = "../bbs_plus" }
22-
schnorr_pok = { version = "0.13.0", default-features = false, path = "../schnorr_pok" }
23-
vb_accumulator = { version = "0.16.0", default-features = false, path = "../vb_accumulator" }
24-
dock_crypto_utils = { version = "0.14.0", default-features = false, path = "../utils" }
25-
saver = { version = "0.12.0", default-features = false, path = "../saver" }
21+
bbs_plus = { version = "0.16.0", default-features = false, path = "../bbs_plus" }
22+
schnorr_pok = { version = "0.14.0", default-features = false, path = "../schnorr_pok" }
23+
vb_accumulator = { version = "0.17.0", default-features = false, path = "../vb_accumulator" }
24+
dock_crypto_utils = { version = "0.15.0", default-features = false, path = "../utils" }
25+
saver = { version = "0.13.0", default-features = false, path = "../saver" }
2626
serde.workspace = true
2727
serde_with.workspace = true
2828
ark-groth16.workspace = true
2929
ark-r1cs-std.workspace = true
3030
ark-relations.workspace = true
3131
zeroize.workspace = true
32-
coconut-crypto = { version = "0.4.0", default-features = false, path = "../coconut" }
32+
coconut-crypto = { version = "0.5.0", default-features = false, path = "../coconut" }
3333
merlin = { package = "dock_merlin", version = "2.0", default-features = false, path = "../merlin" }
34-
legogroth16 = { version = "0.9.0", default-features = false, features = ["circom", "aggregation"], path = "../legogroth16" }
34+
legogroth16 = { version = "0.10.0", default-features = false, features = ["circom", "aggregation"], path = "../legogroth16" }
3535
itertools.workspace = true
3636

3737
[dev-dependencies]

saver/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "saver"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
@@ -17,11 +17,11 @@ ark-relations.workspace = true
1717
ark-groth16.workspace = true
1818
digest.workspace = true
1919
rayon = {workspace = true, optional = true}
20-
dock_crypto_utils = { version = "0.14.0", default-features = false, path = "../utils" }
20+
dock_crypto_utils = { version = "0.15.0", default-features = false, path = "../utils" }
2121
serde.workspace = true
2222
serde_with.workspace = true
2323
zeroize.workspace = true
24-
legogroth16 = { version = "0.9.0", default-features = false, features = ["aggregation"], path = "../legogroth16" }
24+
legogroth16 = { version = "0.10.0", default-features = false, features = ["aggregation"], path = "../legogroth16" }
2525
merlin = { package = "dock_merlin", version = "2.0", default-features = false, path = "../merlin" }
2626

2727
[dev-dependencies]

0 commit comments

Comments
 (0)