Skip to content

Commit

Permalink
Rebase ring branch
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Spinale <[email protected]>
  • Loading branch information
nspin committed Mar 30, 2024
1 parent 1f2b0c9 commit 671c731
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 93 deletions.
111 changes: 23 additions & 88 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
patch.crates-io = {
ring = {
git = "https://github.com/coliasgroup/ring.git";
rev = "10a2b3cbe68da77f9f20ebb3776ab4c605f2b40e";
rev = "5a6085b525d2f2651c30fc6e9133ed32f92bc622";
};
};
}
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -144,4 +144,4 @@ members = [

[patch.crates-io.ring]
git = "https://github.com/coliasgroup/ring.git"
rev = "10a2b3cbe68da77f9f20ebb3776ab4c605f2b40e"
rev = "5a6085b525d2f2651c30fc6e9133ed32f92bc622"
2 changes: 1 addition & 1 deletion crates/sel4-async/network/rustls/utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.8", features = ["less-safe-getrandom-custom-or-rdrand"] }
sel4-async-time = { path = "../../../time" }

[dependencies.rustls]
Expand Down
2 changes: 1 addition & 1 deletion hacking/cargo-manifest-management/manifest-scope.nix
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ in rec {
};

ringWith = features: {
version = "=0.17.7";
version = "=0.17.8";
features = [ "less-safe-getrandom-custom-or-rdrand" ] ++ features;
};

Expand Down
2 changes: 1 addition & 1 deletion hacking/nix/scope/world/instances/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ in rec {
};
});

ring = maybe (haveFullRuntime && haveUnwindingSupport && !hostPlatform.isRiscV32) (
ring = maybe (haveFullRuntime && haveUnwindingSupport && !hostPlatform.isRiscV32 && !hostPlatform.isx86) (
let
rootTask = lib.makeOverridable mkTask {
rootCrate = crates.ring;
Expand Down

0 comments on commit 671c731

Please sign in to comment.