From 63b8245fc6a9998cd9a8c748d8efd1dcb4dbc6c0 Mon Sep 17 00:00:00 2001 From: Tyler Fanelli Date: Thu, 14 Nov 2024 01:51:24 -0500 Subject: [PATCH] Cargo.toml: Specify rdrand as dependency Without the "dep:_" prefix, packagers can mistake this for being a feature, rather than the enablement of an optional dependency. Signed-off-by: Tyler Fanelli --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4226b799..d710f6de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ doc = false [features] default = ["sev", "snp"] -openssl = ["dep:openssl", "rdrand"] +openssl = ["dep:openssl", "dep:rdrand"] hw_tests = [] dangerous_hw_tests = ["hw_tests"] sev = []