From e901cb2bd13c2989e55cac78b21cb4b305aa9a55 Mon Sep 17 00:00:00 2001 From: Nick Spinale Date: Wed, 14 Feb 2024 11:37:06 +0000 Subject: [PATCH] Use precise version of Ring to align with patch Signed-off-by: Nick Spinale --- crates/sel4-async/network/rustls/utils/Cargo.toml | 2 +- hacking/cargo-manifest-management/manifest-scope.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/sel4-async/network/rustls/utils/Cargo.toml b/crates/sel4-async/network/rustls/utils/Cargo.toml index 80bda85c5..4a08abf0d 100644 --- a/crates/sel4-async/network/rustls/utils/Cargo.toml +++ b/crates/sel4-async/network/rustls/utils/Cargo.toml @@ -19,7 +19,7 @@ license = "BSD-2-Clause" [dependencies] getrandom = { version = "0.2.10", features = ["custom"] } rand = { version = "0.8.5", default-features = false, features = ["small_rng"] } -ring = { version = "0.17.7", features = ["less-safe-getrandom-custom-or-rdrand"] } +ring = { version = "=0.17.7", features = ["less-safe-getrandom-custom-or-rdrand"] } sel4-async-time = { path = "../../../time" } [dependencies.rustls] diff --git a/hacking/cargo-manifest-management/manifest-scope.nix b/hacking/cargo-manifest-management/manifest-scope.nix index 11d334ff0..412aa85d1 100644 --- a/hacking/cargo-manifest-management/manifest-scope.nix +++ b/hacking/cargo-manifest-management/manifest-scope.nix @@ -186,7 +186,7 @@ in rec { }; ringWith = features: { - version = "0.17.7"; + version = "=0.17.7"; features = [ "less-safe-getrandom-custom-or-rdrand" ] ++ features; };