Skip to content

Commit

Permalink
Use symbolic versions of crates
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Spinale <[email protected]>
  • Loading branch information
nspin committed Jan 6, 2024
1 parent 7ecc2a6 commit 673540c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/private/tests/root-task/ring-test-harness/Cargo.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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" ];
};
Expand Down
2 changes: 2 additions & 0 deletions hacking/cargo-manifest-management/manifest-scope.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand All @@ -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";
Expand Down

0 comments on commit 673540c

Please sign in to comment.