about summary refs log tree commit diff
path: root/pkgs/development/interpreters/wasmtime
diff options
context:
space:
mode:
authorThomas Gerbet <thomas@gerbet.me>2023-03-08 21:53:06 +0100
committerThomas Gerbet <thomas@gerbet.me>2023-03-08 21:53:06 +0100
commitb4990c9891e53aabb22504504d890e41f745540d (patch)
treef7fc1f4a9d506b9422b56ca0a4296010ec86d697 /pkgs/development/interpreters/wasmtime
parent3d57138bd9abe31bae25704cebaab7527010cc5e (diff)
downloadnixlib-b4990c9891e53aabb22504504d890e41f745540d.tar
nixlib-b4990c9891e53aabb22504504d890e41f745540d.tar.gz
nixlib-b4990c9891e53aabb22504504d890e41f745540d.tar.bz2
nixlib-b4990c9891e53aabb22504504d890e41f745540d.tar.lz
nixlib-b4990c9891e53aabb22504504d890e41f745540d.tar.xz
nixlib-b4990c9891e53aabb22504504d890e41f745540d.tar.zst
nixlib-b4990c9891e53aabb22504504d890e41f745540d.zip
wasmtime: 6.0.0 -> 6.0.1
Fixes CVE-2023-26489 and CVE-2023-27477.

https://github.com/bytecodealliance/wasmtime/blob/v6.0.1/RELEASES.md
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 ecc8788ca7be..f07ddfb0e606 100644
--- a/pkgs/development/interpreters/wasmtime/default.nix
+++ b/pkgs/development/interpreters/wasmtime/default.nix
@@ -2,17 +2,17 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "wasmtime";
-  version = "6.0.0";
+  version = "6.0.1";
 
   src = fetchFromGitHub {
     owner = "bytecodealliance";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-wCM+axQy5gOHUAThmwPYMt9/HWuIpGcQjMT9TSLqWbk=";
+    hash = "sha256-vVdvj3Q3weK+yohSaEDaagqWWZkA+KV4gRRbcE3UiPQ=";
     fetchSubmodules = true;
   };
 
-  cargoHash = "sha256-0RsTE6pcbbUFn7PWg1tNOlvix6TIB5DZxiJQVKU+lKg=";
+  cargoHash = "sha256-7FYXKEN17I7sLQid2JGTxFHMhGPka2coEMS6y4HvwPU=";
 
   cargoBuildFlags = [
     "--package wasmtime-cli"