summary refs log tree commit diff
path: root/pkgs/development/tools/rust/cargo-expand
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2021-07-29 02:49:25 +0000
committerR. RyanTM <ryantm-bot@ryantm.com>2021-07-29 02:49:25 +0000
commit8a9b68514dd944f4eb2c4ebc512660fb6a4d0799 (patch)
tree85c3b0a20d5db29018a11d400486843d09122c8d /pkgs/development/tools/rust/cargo-expand
parentdb809100db91e97c118a70c3879307afdbf1dbb7 (diff)
cargo-expand: 1.0.7 -> 1.0.8
Diffstat (limited to 'pkgs/development/tools/rust/cargo-expand')
-rw-r--r--pkgs/development/tools/rust/cargo-expand/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/rust/cargo-expand/default.nix b/pkgs/development/tools/rust/cargo-expand/default.nix
index 390850c9afa74..1403f67abdabe 100644
--- a/pkgs/development/tools/rust/cargo-expand/default.nix
+++ b/pkgs/development/tools/rust/cargo-expand/default.nix
@@ -2,16 +2,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "cargo-expand";
-  version = "1.0.7";
+  version = "1.0.8";
 
   src = fetchFromGitHub {
     owner = "dtolnay";
     repo = pname;
     rev = version;
-    sha256 = "sha256-8YppfgYa5Sd/3nPCMCgaM3A93ND0vU5eUoCW02uDkiM=";
+    sha256 = "sha256-UkNO2uNiyN6xB74dNMiWZUCH6qq6P6u95wTq8xRvxsQ=";
   };
 
-  cargoSha256 = "sha256-0lrz8awAtLuLWE6Prmi07iGfYVmNZIETv3QL55CPYHQ=";
+  cargoSha256 = "sha256-JTjPdTG8KGYVkiCkTqRiJyTpm7OpZkbW10EKSp9lLJ4=";
 
   buildInputs = lib.optional stdenv.isDarwin libiconv;