summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2022-09-16 19:59:12 -0400
committerGitHub <noreply@github.com>2022-09-16 19:59:12 -0400
commitd9a1414346059619d9e13ab93e749bbb82e5252a (patch)
tree7b13dc90ab74e26812f679eb0a65d1a69e8348e0
parent65aeae8e8f972e7fb8237d87c8f37bbf0918a754 (diff)
parentf5e5daa0c82e53a01c8a16a44d3e595044330acd (diff)
Merge pull request #191239 from figsoda/update-cargo-edit
cargo-edit: 0.10.4 -> 0.11.1
-rw-r--r--pkgs/development/tools/rust/cargo-edit/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/development/tools/rust/cargo-edit/default.nix b/pkgs/development/tools/rust/cargo-edit/default.nix
index 6e3d6904eb00..16083cc0686b 100644
--- a/pkgs/development/tools/rust/cargo-edit/default.nix
+++ b/pkgs/development/tools/rust/cargo-edit/default.nix
@@ -5,27 +5,25 @@
, openssl
, zlib
, stdenv
-, libiconv
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-edit";
- version = "0.10.4";
+ version = "0.11.1";
src = fetchFromGitHub {
owner = "killercup";
repo = pname;
rev = "v${version}";
- hash = "sha256-U3B/Tb7q61R5jmBni1QKqqul2JJgjtmh3st04apu0xE=";
+ hash = "sha256-TqRz1Og5wsKsiIESmplnTsGLRboEQ20cViWgXfwEHGQ=";
};
- cargoSha256 = "sha256-e8ICBRI6kNfItu3CxxbIY+56/2ho0Rnn1B3w/WJX+KM=";
+ cargoSha256 = "sha256-4DVek/R7VABzSJ8vEb6f3Tgf1vVLIKAWj80Il5gWu2g=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl zlib ] ++ lib.optionals stdenv.isDarwin [
- libiconv
Security
];