From 5e6c9362ff33c2bbfe189a55e44fd2d68b463227 Mon Sep 17 00:00:00 2001 From: Bruno Tavares Date: Sun, 31 Jan 2021 21:08:15 -0300 Subject: [PATCH] Bump merlin to compatible rand version To bump rand on this crate, we also need to use a new version of merlin dependency which builds on the same rand version. References: - https://github.com/zkcrypto/merlin/pull/2 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 974200d..47b298f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ features = ["nightly", "batch"] [dependencies] curve25519-dalek = { version = "3", default-features = false } ed25519 = { version = "1", default-features = false } -merlin = { version = "2", default-features = false, optional = true } +merlin = { version = "3", default-features = false, optional = true } rand = { version = "0.8", default-features = false, optional = true } rand_core = { version = "0.6", default-features = false, optional = true } serde_crate = { package = "serde", version = "1.0", default-features = false, optional = true }