summary refs log tree commit diff
path: root/pkgs/development/tools/rust
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2021-12-13 09:30:49 -0800
committerGitHub <noreply@github.com>2021-12-13 09:30:49 -0800
commitc152cb71e182068a83b22a7bbea5bf19bfae6eb6 (patch)
treed7b213ec7c6da0ff7f99ef30bf9817e9d8b18f93 /pkgs/development/tools/rust
parentceef03d9d8017e15117c19daa9f93ff1492df2f9 (diff)
parent0ea903b308bad10708bc2267ac64484ef4eb47c2 (diff)
downloadnixpkgs-c152cb71e182068a83b22a7bbea5bf19bfae6eb6.tar
nixpkgs-c152cb71e182068a83b22a7bbea5bf19bfae6eb6.tar.gz
nixpkgs-c152cb71e182068a83b22a7bbea5bf19bfae6eb6.tar.bz2
nixpkgs-c152cb71e182068a83b22a7bbea5bf19bfae6eb6.tar.lz
nixpkgs-c152cb71e182068a83b22a7bbea5bf19bfae6eb6.tar.xz
nixpkgs-c152cb71e182068a83b22a7bbea5bf19bfae6eb6.tar.zst
nixpkgs-c152cb71e182068a83b22a7bbea5bf19bfae6eb6.zip
Merge pull request #150266 from r-ryantm/auto-update/cargo-feature
cargo-feature: 0.5.5 -> 0.6.0
Diffstat (limited to 'pkgs/development/tools/rust')
-rw-r--r--pkgs/development/tools/rust/cargo-feature/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/rust/cargo-feature/default.nix b/pkgs/development/tools/rust/cargo-feature/default.nix
index facbf0299a5..938dfab2982 100644
--- a/pkgs/development/tools/rust/cargo-feature/default.nix
+++ b/pkgs/development/tools/rust/cargo-feature/default.nix
@@ -2,16 +2,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "cargo-feature";
-  version = "0.5.5";
+  version = "0.6.0";
 
   src = fetchFromGitHub {
     owner = "Riey";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-0Ski+LytE636HHduisYJJq3khRsaJJ4YhpmaU5On348=";
+    sha256 = "sha256-9TP67YtvRtgLtsKACL5xjXq5kZtYpTWsTqQsbOKPwtY=";
   };
 
-  cargoSha256 = "sha256-PA/s/BrqUftdGc5Lvd0glL9Dr8GLX9pYMq6WRRUQwEk=";
+  cargoSha256 = "sha256-MkLsQebQdqfUuARIdQZg47kMPudstJUgRQgUuovoLes=";
 
   buildInputs = lib.optional stdenv.isDarwin libiconv;