about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-10-26 20:10:00 -0500
committerGitHub <noreply@github.com>2023-10-26 20:10:00 -0500
commit98a00c2cf8ba78da951b5b9b88af4ae29d02586f (patch)
tree5cc83a313fae09f057f065194f07dd813f6b71af
parentdfe2cda60557ddef452b221ef378ae34cd401c02 (diff)
parent590cd0ad821bbeebf69531df3da112dc6f8ae036 (diff)
downloadnixlib-98a00c2cf8ba78da951b5b9b88af4ae29d02586f.tar
nixlib-98a00c2cf8ba78da951b5b9b88af4ae29d02586f.tar.gz
nixlib-98a00c2cf8ba78da951b5b9b88af4ae29d02586f.tar.bz2
nixlib-98a00c2cf8ba78da951b5b9b88af4ae29d02586f.tar.lz
nixlib-98a00c2cf8ba78da951b5b9b88af4ae29d02586f.tar.xz
nixlib-98a00c2cf8ba78da951b5b9b88af4ae29d02586f.tar.zst
nixlib-98a00c2cf8ba78da951b5b9b88af4ae29d02586f.zip
Merge pull request #263624 from ereslibre/bump-wasmtime
wasmtime: 14.0.1 -> 14.0.2
-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 e2e75a80cebe..f2238eb5fa85 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 = "14.0.1";
+  version = "14.0.2";
 
   src = fetchFromGitHub {
     owner = "bytecodealliance";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-9Bpq96k/AOuKPXHeVv3zCqinGUu3rBqKsIryV/RUVlE=";
+    hash = "sha256-/YAu2wIeDhMojWfutJSEp7SELOV4G/EfQjypLQI+jo8=";
     fetchSubmodules = true;
   };
 
   # Disable cargo-auditable until https://github.com/rust-secure-code/cargo-auditable/issues/124 is solved.
   auditable = false;
-  cargoHash = "sha256-q/PTPiaggqYQwZZ9QyFi9ctgqYsFSy/ITHfOBgSHG+U=";
+  cargoHash = "sha256-4Ca3RlpJQ67zwje0SowqqEcBGLnht5QL/PCrrtFTc4o=";
   cargoBuildFlags = [ "--package" "wasmtime-cli" "--package" "wasmtime-c-api" ];
 
   outputs = [ "out" "dev" ];