Skip to content

Commit 0ad70ae

Browse files
committed
Update deps
Signed-off-by: lovesh <lovesh.bond@gmail.com>
1 parent bb6850c commit 0ad70ae

File tree

17 files changed

+38
-40
lines changed

17 files changed

+38
-40
lines changed

Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ 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-
merlin = { package = "dock_merlin", version = "1.0", default-features = false, path = "./merlin" }
45-
legogroth16 = { version = "0.8.0" , default-features = false }
4644

4745
[profile.release]
4846
lto = true

bbs_plus/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ ark-std.workspace = true
1919
digest.workspace = true
2020
rayon = {workspace = true, optional = true}
2121
itertools = "0.10.5"
22-
schnorr_pok = { version = "0.12.0", default-features = false, path = "../schnorr_pok" }
23-
dock_crypto_utils = { version = "0.13.0", default-features = false, path = "../utils" }
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" }
2424
oblivious_transfer_protocols = { version = "0.2.0", default-features = false, path = "../oblivious_transfer" }
2525
secret_sharing_and_dkg = { version = "0.6.0", default-features = false, path = "../secret_sharing_and_dkg" }
2626
sha3 = { version = "0.10.6", default-features = false }

benches/Cargo.toml

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

88
[dependencies]
99
bbs_plus = { version = "0.15.0", default-features = false, path = "../bbs_plus" }
10-
schnorr_pok = { version = "0.12.0", default-features = false, path = "../schnorr_pok" }
11-
vb_accumulator = { version = "0.15.0", default-features = false, path = "../vb_accumulator" }
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" }
1212
test_utils = { version = "0.1.0", default-features = false, path = "../test_utils" }
1313
ark-ff.workspace = true
1414
ark-ec.workspace = true

coconut/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ itertools = "0.10.5"
2222
zeroize.workspace = true
2323
serde_with.workspace = true
2424
rayon = { workspace = true, optional = true }
25-
utils = { package = "dock_crypto_utils", version = "0.13.0", default-features = false, path = "../utils" }
26-
schnorr_pok = { version = "0.12.0", default-features = false, path = "../schnorr_pok" }
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" }
2727
secret_sharing_and_dkg = { version = "0.6.0", default-features = false, path = "../secret_sharing_and_dkg" }
2828

2929
[dev-dependencies]

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.5"
3+
version = "0.0.6"
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.13.0", default-features = false, path = "../utils" }
18+
dock_crypto_utils = { version = "0.14.0", default-features = false, path = "../utils" }
1919

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

delegatable_credentials/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "delegatable_credentials"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
edition.workspace = true
55
authors.workspace = true
66
license.workspace = true
@@ -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.13.0", default-features = false, path = "../utils" }
20+
dock_crypto_utils = { version = "0.14.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.12.0", default-features = false, path = "../schnorr_pok" }
23+
schnorr_pok = { version = "0.13.0", default-features = false, path = "../schnorr_pok" }
2424
[dependencies.num-integer]
2525
version = "0.1.42"
2626
features = ["i128"]

legogroth16/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.13.0", default-features = false, path = "../utils" }
32+
dock_crypto_utils = { version = "0.14.0", default-features = false, path = "../utils" }
3333

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

merlin/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dock_merlin"
3-
version = "1.0.0"
3+
version = "2.0.0"
44
authors = ["Henry de Valence <hdevalence@hdevalence.ca>"]
55
edition = "2018"
66
readme = "README.md"
@@ -24,13 +24,13 @@ zeroize.workspace = true
2424
serde.workspace = true
2525
keccak = { version = "0.1.0", default-features = false }
2626
byteorder = { version = "1.2.4", default-features = false }
27-
rand_core = { version = "0.5", default-features = false }
28-
hex = {version = "0.3", default-features = false, optional = true}
27+
rand_core = { version = "0.6", default-features = false }
28+
hex = {version = "0.4.3", default-features = false, optional = true}
2929

3030
[dev-dependencies]
3131
strobe-rs = "0.5"
32-
curve25519-dalek = "2"
33-
rand_chacha = "0.2"
32+
curve25519-dalek = { version = "4", package = "curve25519-dalek-ng" }
33+
rand_chacha = "0.3"
3434

3535
[features]
3636
default = ["std"]

merlin/src/transcript.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,9 +235,9 @@ impl Transcript {
235235
/// These methods are intended to be chained, passing from a borrowed
236236
/// [`Transcript`] to an owned [`TranscriptRng`] as follows:
237237
/// ```
238-
/// # extern crate merlin;
238+
/// # extern crate dock_merlin;
239239
/// # extern crate rand_core;
240-
/// # use merlin::Transcript;
240+
/// # use dock_merlin::Transcript;
241241
/// # fn main() {
242242
/// # let mut transcript = Transcript::new(b"TranscriptRng doctest");
243243
/// # let public_data = b"public data";

oblivious_transfer/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.13.0", default-features = false, path = "../utils" }
20-
schnorr_pok = { version = "0.12.0", default-features = false, path = "../schnorr_pok" }
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" }
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 }

0 commit comments

Comments
 (0)