about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2024-04-26 09:35:50 -0400
committerGitHub <noreply@github.com>2024-04-26 09:35:50 -0400
commit9b2a2c60e0e38a8eccfc92f793126499b7e71bfc (patch)
treea8b365468c0867ca28d72cad9911086b44ebf90b /pkgs
parent7af0845933508cf4a895e4f43c635aba516aadc9 (diff)
parent274a65199797a2e16973a994147d9ef6d4abf723 (diff)
Merge pull request #306867 from ereslibre/bump-wasm-tools
wasm-tools: 1.205.0 -> 1.206.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/misc/wasm-tools/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/wasm-tools/default.nix b/pkgs/tools/misc/wasm-tools/default.nix
index de79e97e86360..529815b12ec45 100644
--- a/pkgs/tools/misc/wasm-tools/default.nix
+++ b/pkgs/tools/misc/wasm-tools/default.nix
@@ -5,19 +5,19 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "wasm-tools";
-  version = "1.205.0";
+  version = "1.206.0";
 
   src = fetchFromGitHub {
     owner = "bytecodealliance";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-p7MkuPMy0w4o5c3ofJ37PpmGsXfQ4be/R4t7Iw8vDvQ=";
+    hash = "sha256-dRCPur2EmEF5GV4PWSWAKIE+A9KfW2FbnUJVdXct3aA=";
     fetchSubmodules = true;
   };
 
   # Disable cargo-auditable until https://github.com/rust-secure-code/cargo-auditable/issues/124 is solved.
   auditable = false;
-  cargoHash = "sha256-Nb0aZjPwFmSoQOTrm+zBG53VR5ogdLmsG6YTz5cR43g=";
+  cargoHash = "sha256-M3wtgvZWWTlB1mmyLJNHBXwVMc5b61ie/RmSGn1ow9U=";
   cargoBuildFlags = [ "--package" "wasm-tools" ];
   cargoTestFlags = [ "--all" ];