Skip to content

Commit 9bf1f96

Browse files
committed
Bump versions
Signed-off-by: lovesh <lovesh.bond@gmail.com>
1 parent 61210e5 commit 9bf1f96

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

bbs_plus/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bbs_plus"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
@@ -19,7 +19,7 @@ ark-std.workspace = true
1919
digest.workspace = true
2020
rayon = {workspace = true, optional = true}
2121
itertools = "0.10.5"
22-
schnorr_pok = { version = "0.9.0", default-features = false, path = "../schnorr_pok" }
22+
schnorr_pok = { version = "0.10.0", default-features = false, path = "../schnorr_pok" }
2323
dock_crypto_utils = { version = "0.10.0", default-features = false, path = "../utils" }
2424
serde.workspace = true
2525
serde_with.workspace = true

benches/Cargo.toml

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

88
[dependencies]
9-
bbs_plus = { version = "0.12.0", default-features = false, path = "../bbs_plus" }
10-
schnorr_pok = { version = "0.9.0", default-features = false, path = "../schnorr_pok" }
9+
bbs_plus = { version = "0.13.0", default-features = false, path = "../bbs_plus" }
10+
schnorr_pok = { version = "0.10.0", default-features = false, path = "../schnorr_pok" }
1111
vb_accumulator = { version = "0.12.0", default-features = false, path = "../vb_accumulator" }
1212
test_utils = { version = "0.1.0", default-features = false, path = "../test_utils" }
1313
ark-ff.workspace = true

coconut/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ zeroize.workspace = true
2323
serde_with.workspace = true
2424
rayon = { workspace = true, optional = true }
2525
utils = { package = "dock_crypto_utils", version = "0.10.0", default-features = false, path = "../utils" }
26-
schnorr_pok = { version = "0.9.0", default-features = false, path = "../schnorr_pok" }
27-
secret_sharing_and_dkg = { version = "0.2.0", default-features = false, path = "../secret_sharing_and_dkg" }
26+
schnorr_pok = { version = "0.10.0", default-features = false, path = "../schnorr_pok" }
27+
secret_sharing_and_dkg = { version = "0.3.0", default-features = false, path = "../secret_sharing_and_dkg" }
2828

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

delegatable_credentials/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ serde_with.workspace = true
2020
dock_crypto_utils = { version = "0.10.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.9.0", default-features = false, path = "../schnorr_pok" }
23+
schnorr_pok = { version = "0.10.0", default-features = false, path = "../schnorr_pok" }
2424
[dependencies.num-integer]
2525
version = "0.1.42"
2626
features = ["i128"]

proof_system/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ ark-ec.workspace = true
1818
ark-std.workspace = true
1919
digest.workspace = true
2020
rayon = {workspace = true, optional = true}
21-
bbs_plus = { version = "0.12.0", default-features = false, path = "../bbs_plus" }
22-
schnorr_pok = { version = "0.9.0", default-features = false, path = "../schnorr_pok" }
21+
bbs_plus = { version = "0.13.0", default-features = false, path = "../bbs_plus" }
22+
schnorr_pok = { version = "0.10.0", default-features = false, path = "../schnorr_pok" }
2323
vb_accumulator = { version = "0.12.0", default-features = false, path = "../vb_accumulator" }
2424
dock_crypto_utils = { version = "0.10.0", default-features = false, path = "../utils" }
2525
saver = { version = "0.9.0", default-features = false, path = "../saver" }

schnorr_pok/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "schnorr_pok"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true

secret_sharing_and_dkg/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "secret_sharing_and_dkg"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
@@ -19,7 +19,7 @@ serde.workspace = true
1919
serde_with.workspace = true
2020
zeroize.workspace = true
2121
dock_crypto_utils = { version = "0.10.0", default-features = false, path = "../utils" }
22-
schnorr_pok = { version = "0.9.0", default-features = false, path = "../schnorr_pok" }
22+
schnorr_pok = { version = "0.10.0", default-features = false, path = "../schnorr_pok" }
2323

2424
[dev-dependencies]
2525
blake2.workspace = true

test_utils/Cargo.toml

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

88
[dependencies]
9-
bbs_plus = { version = "0.12.0", default-features = false, path = "../bbs_plus" }
10-
schnorr_pok = { version = "0.9.0", default-features = false, path = "../schnorr_pok" }
9+
bbs_plus = { version = "0.13.0", default-features = false, path = "../bbs_plus" }
10+
schnorr_pok = { version = "0.10.0", default-features = false, path = "../schnorr_pok" }
1111
vb_accumulator = { version = "0.12.0", default-features = false, path = "../vb_accumulator" }
1212
ark-ff.workspace = true
1313
ark-ec.workspace = true

vb_accumulator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ rayon = {workspace = true, optional = true}
2222
serde.workspace = true
2323
serde_with.workspace = true
2424
zeroize.workspace = true
25-
schnorr_pok = { version = "0.9.0", default-features = false, path = "../schnorr_pok" }
25+
schnorr_pok = { version = "0.10.0", default-features = false, path = "../schnorr_pok" }
2626
dock_crypto_utils = { version = "0.10.0", default-features = false, path = "../utils" }
2727

2828
[dev-dependencies]

0 commit comments

Comments
 (0)