From e17b8d0c098a2912dcd329cb9af48a940a4d9a5a Mon Sep 17 00:00:00 2001 From: parazyd Date: Thu, 13 Jan 2022 13:34:03 +0100 Subject: [PATCH] Cargo.toml: Add rand crate where necessary. --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index ea3549d0a..c89a92d43 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -116,6 +116,7 @@ util = [ rpc = [ "async-runtime", "async-net", + "rand", "util", "websockets", "url", @@ -131,6 +132,7 @@ tui = [ ] system = [ "async-runtime", + "rand", ] cli = [ "toml", @@ -142,6 +144,7 @@ net = [ "system", ] crypto = [ + "rand", "pasta_curves", "blake2b_simd", "incrementalmerkletree",