about summary refs log tree commit diff
path: root/pkgs/development/interpreters/wasmtime
diff options
context:
space:
mode:
authorRafael Fernández López <ereslibre@ereslibre.es>2024-05-03 19:31:05 +0200
committerRafael Fernández López <ereslibre@ereslibre.es>2024-05-03 19:31:05 +0200
commitabf0d76426a811bf483776b7e355fa7ce055ad9e (patch)
tree2801c02bb856e458fa05751602a31cf1cc11a1d8 /pkgs/development/interpreters/wasmtime
parentdf2353cfdc7712816e89cdefd4728aa73feb80f7 (diff)
downloadnixlib-abf0d76426a811bf483776b7e355fa7ce055ad9e.tar
nixlib-abf0d76426a811bf483776b7e355fa7ce055ad9e.tar.gz
nixlib-abf0d76426a811bf483776b7e355fa7ce055ad9e.tar.bz2
nixlib-abf0d76426a811bf483776b7e355fa7ce055ad9e.tar.lz
nixlib-abf0d76426a811bf483776b7e355fa7ce055ad9e.tar.xz
nixlib-abf0d76426a811bf483776b7e355fa7ce055ad9e.tar.zst
nixlib-abf0d76426a811bf483776b7e355fa7ce055ad9e.zip
wasmtime: 20.0.0 -> 20.0.1
Diffstat (limited to 'pkgs/development/interpreters/wasmtime')
-rw-r--r--pkgs/development/interpreters/wasmtime/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/wasmtime/default.nix b/pkgs/development/interpreters/wasmtime/default.nix
index 545c176ab472..088ef8ba9a90 100644
--- a/pkgs/development/interpreters/wasmtime/default.nix
+++ b/pkgs/development/interpreters/wasmtime/default.nix
@@ -2,19 +2,19 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "wasmtime";
-  version = "20.0.0";
+  version = "20.0.1";
 
   src = fetchFromGitHub {
     owner = "bytecodealliance";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-Q2CsIwYQsLnAlGyMRxNTxjZsezxhjSptBF540NtgkCc=";
+    hash = "sha256-Qgeg/TYjbfzDEXTPqS6GkTOQrLMGc6D3vochuJSqas0=";
     fetchSubmodules = true;
   };
 
   # Disable cargo-auditable until https://github.com/rust-secure-code/cargo-auditable/issues/124 is solved.
   auditable = false;
-  cargoHash = "sha256-d956DuVtLbZ/u3sAA4cQlw55CuYC7XyzeQarwyQ/hpY=";
+  cargoHash = "sha256-HfTwN53j60sG3mcWPEKeveyf7sEbI2746pTJSn6Zlp0=";
   cargoBuildFlags = [ "--package" "wasmtime-cli" "--package" "wasmtime-c-api" ];
 
   outputs = [ "out" "dev" ];