Skip to content

Commit 4ca7e00

Browse files
committed
Shift dependency to workspace
Signed-off-by: lovesh <lovesh.bond@gmail.com>
1 parent 0ad70ae commit 4ca7e00

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ serde_with = { version = "1.10.0", default-features = false, features = ["macros
4141
zeroize = { version = "1.6.0", features = ["derive"] }
4242
blake2 = { version = "0.10", default-features = false }
4343
ark-bls12-381 = { version = "^0.4.0", default-features = false, features = [ "curve" ] }
44+
itertools = {version = "0.10.5", default-features = false}
4445

4546
[profile.release]
4647
lto = true

bbs_plus/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ark-ec.workspace = true
1818
ark-std.workspace = true
1919
digest.workspace = true
2020
rayon = {workspace = true, optional = true}
21-
itertools = "0.10.5"
21+
itertools.workspace = true
2222
schnorr_pok = { version = "0.13.0", default-features = false, path = "../schnorr_pok" }
2323
dock_crypto_utils = { version = "0.14.0", default-features = false, path = "../utils" }
2424
oblivious_transfer_protocols = { version = "0.2.0", default-features = false, path = "../oblivious_transfer" }

benches/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ark-bls12-381.workspace = true
1717
serde.workspace = true
1818
serde_with.workspace = true
1919
blake2 = { version = "0.10", default-features = false }
20-
itertools = "0.10.5"
20+
itertools.workspace = true
2121
coconut-crypto = { version = "0.4.0", default-features = false, path = "../coconut" }
2222
oblivious_transfer_protocols = { version = "0.2.0", default-features = false, path = "../oblivious_transfer" }
2323
dock_crypto_utils = { default-features = false, path = "../utils" }

coconut/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ark-poly.workspace = true
1818
ark-serialize.workspace = true
1919
serde.workspace = true
2020
digest.workspace = true
21-
itertools = "0.10.5"
21+
itertools.workspace = true
2222
zeroize.workspace = true
2323
serde_with.workspace = true
2424
rayon = { workspace = true, optional = true }

oblivious_transfer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ 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 }
2424
aes = { version = "0.8.2", default-features = false }
25-
itertools = {version = "0.10.5", default-features = false}
25+
itertools.workspace = true
2626
byteorder = { version = "1.4", default-features = false }
2727

2828
[dev-dependencies]

proof_system/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ zeroize.workspace = true
3232
coconut-crypto = { version = "0.4.0", default-features = false, path = "../coconut" }
3333
merlin = { package = "dock_merlin", version = "2.0", default-features = false, path = "../merlin" }
3434
legogroth16 = { version = "0.9.0", default-features = false, features = ["circom", "aggregation"], path = "../legogroth16" }
35-
itertools = "0.10.5"
36-
paste = "1.0.12"
35+
itertools.workspace = true
3736

3837
[dev-dependencies]
3938
ark-bls12-381.workspace = true

utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ serde.workspace = true
2323
serde_with.workspace = true
2424
rayon = {workspace = true, optional = true}
2525
merlin = { package = "dock_merlin", version = "2.0", default-features = false, path = "../merlin" }
26-
itertools = "0.10.5"
26+
itertools.workspace = true
2727

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

0 commit comments

Comments
 (0)