From b2c6a40c9d9e25dee61b4c11b92eb21b03338d24 Mon Sep 17 00:00:00 2001 From: StNicolay Date: Tue, 27 Jun 2023 22:53:42 +0300 Subject: [PATCH] Added rand/std feature in cryptography --- cryptography/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cryptography/Cargo.toml b/cryptography/Cargo.toml index ee4508a..3fa5ea1 100644 --- a/cryptography/Cargo.toml +++ b/cryptography/Cargo.toml @@ -12,7 +12,7 @@ pbkdf2 = "0.12.1" thiserror = "1.0.40" entity = { version = "0.1.0", path = "../entity" } chacha20poly1305 = { version = "0.10.1", features = ["std"] } -rand = { version = "0.8.5", default-features = false, features = ["std_rng"] } +rand = { version = "0.8.5", default-features = false, features = ["std_rng", "std"] } sea-orm = "0.11.3" bitflags = "2.3.1" arrayvec = "0.7.2"