From 673540c3f68e76b4a42b0bf6e95f3f70b9885544 Mon Sep 17 00:00:00 2001 From: Nick Spinale Date: Fri, 5 Jan 2024 03:21:41 +0000 Subject: [PATCH] Use symbolic versions of crates Signed-off-by: Nick Spinale --- crates/private/tests/root-task/ring-test-harness/Cargo.nix | 4 ++-- hacking/cargo-manifest-management/manifest-scope.nix | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/crates/private/tests/root-task/ring-test-harness/Cargo.nix b/crates/private/tests/root-task/ring-test-harness/Cargo.nix index 229ff6a2b..67ce7ccfd 100644 --- a/crates/private/tests/root-task/ring-test-harness/Cargo.nix +++ b/crates/private/tests/root-task/ring-test-harness/Cargo.nix @@ -22,11 +22,11 @@ mk rec { ]; }; getrandom = { - version = "0.2.10"; + version = versions.getrandom; features = [ "custom" ]; }; rand = { - version = "0.8.5"; + version = versions.rand; default-features = false; features = [ "small_rng" ]; }; diff --git a/hacking/cargo-manifest-management/manifest-scope.nix b/hacking/cargo-manifest-management/manifest-scope.nix index cc01f2b9d..af17477d4 100644 --- a/hacking/cargo-manifest-management/manifest-scope.nix +++ b/hacking/cargo-manifest-management/manifest-scope.nix @@ -93,6 +93,7 @@ in rec { clap = "4.4.6"; fallible-iterator = "0.2.0"; futures = "0.3.28"; + getrandom = "0.2.10"; gimli = "0.28.0"; heapless = "0.7.16"; log = "0.4.17"; @@ -104,6 +105,7 @@ in rec { postcard = "1.0.2"; proc-macro2 = "1.0.50"; quote = "1.0.23"; + rand = "0.8.5"; serde = "1.0.147"; serde_json = "1.0.87"; serde_yaml = "0.9.14";