git.delta.rocks / jrsonnet / refs/commits / 26153bc074f1

difftreelog

ci upgrade rust

Yaroslav Bolyukin2022-11-03parent: #b932109.patch.diff
in: master

2 files changed

modifiedflake.lockdiffbeforeafterboth
2 "nodes": {2 "nodes": {
3 "flake-utils": {3 "flake-utils": {
4 "locked": {4 "locked": {
5 "lastModified": 1659877975,5 "lastModified": 1667395993,
6 "narHash": "sha256-zllb8aq3YO3h8B/U0/J1WBgAL8EX5yWf5pMj3G0NAmc=",6 "narHash": "sha256-nuEHfE/LcWyuSWnS8t12N1wc105Qtau+/OdUAjtQ0rA=",
7 "owner": "numtide",7 "owner": "numtide",
8 "repo": "flake-utils",8 "repo": "flake-utils",
9 "rev": "c0e246b9b83f637f4681389ecabcb2681b4f3af0",9 "rev": "5aed5285a952e0b949eb3ba02c12fa4fcfef535f",
10 "type": "github"10 "type": "github"
11 },11 },
12 "original": {12 "original": {
32 },32 },
33 "nixpkgs": {33 "nixpkgs": {
34 "locked": {34 "locked": {
35 "lastModified": 1666714275,35 "lastModified": 1667490665,
36 "narHash": "sha256-5Ba4rKMqjQ9e7K6eqdwfWuhQU4HO+8an90WQ3BaiFQM=",36 "narHash": "sha256-pWZ9zPk0ZSDXYcXHwAnCW8Yfxa5iXYibObkxxU8xbe4=",
37 "owner": "nixos",37 "owner": "nixos",
38 "repo": "nixpkgs",38 "repo": "nixpkgs",
39 "rev": "b410bee3cdea9365afcd9f342839d5b6e51c2df4",39 "rev": "936a742b05dd70a0a6083c739b0cbc4a369a76f4",
40 "type": "github"40 "type": "github"
41 },41 },
42 "original": {42 "original": {
74 "nixpkgs": "nixpkgs_2"74 "nixpkgs": "nixpkgs_2"
75 },75 },
76 "locked": {76 "locked": {
77 "lastModified": 1666667027,77 "lastModified": 1667487142,
78 "narHash": "sha256-MUJa0T8j5cy3eE70hoL1KW52VfTcXm4VbwvdF5scs1g=",78 "narHash": "sha256-bVuzLs1ZVggJAbJmEDVO9G6p8BH3HRaolK70KXvnWnU=",
79 "owner": "oxalica",79 "owner": "oxalica",
80 "repo": "rust-overlay",80 "repo": "rust-overlay",
81 "rev": "79b6e66bb76537c96707703f08630765e46148d1",81 "rev": "cf668f737ac986c0a89e83b6b2e3c5ddbd8cf33b",
82 "type": "github"82 "type": "github"
83 },83 },
84 "original": {84 "original": {
modifiedflake.nixdiffbeforeafterboth
--- a/flake.nix
+++ b/flake.nix
@@ -12,8 +12,8 @@
           inherit system;
           overlays = [ rust-overlay.overlays.default ];
         };
-        rust = ((pkgs.rustChannelOf { date = "2022-10-22"; channel = "nightly"; }).default.override {
-          extensions = [ "rust-src" ];
+        rust = ((pkgs.rustChannelOf { date = "2022-11-02"; channel = "nightly"; }).default.override {
+          extensions = [ "rust-src" "miri" ];
         });
       in
       rec {
@@ -21,6 +21,7 @@
           nativeBuildInputs = with pkgs;[
             rust
             cargo-edit
+            lld
             hyperfine
             go-jsonnet
           ];