about summary refs log tree commit diff
path: root/pkgs/development/interpreters/wasmtime
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2024-02-29 04:51:03 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2024-02-29 04:51:03 +0000
commitab87c7f141fedfd8b525a74da2db1528444d5556 (patch)
tree1c6dcaf299db91c81f431950cc0b2e3b41df76a8 /pkgs/development/interpreters/wasmtime
parent6780926802f953c2266e8a4215c7a4be86803dfa (diff)
downloadnixlib-ab87c7f141fedfd8b525a74da2db1528444d5556.tar
nixlib-ab87c7f141fedfd8b525a74da2db1528444d5556.tar.gz
nixlib-ab87c7f141fedfd8b525a74da2db1528444d5556.tar.bz2
nixlib-ab87c7f141fedfd8b525a74da2db1528444d5556.tar.lz
nixlib-ab87c7f141fedfd8b525a74da2db1528444d5556.tar.xz
nixlib-ab87c7f141fedfd8b525a74da2db1528444d5556.tar.zst
nixlib-ab87c7f141fedfd8b525a74da2db1528444d5556.zip
wasmtime: 18.0.1 -> 18.0.2
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 3247b7eb7dee..72f1d6eb4a12 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 = "18.0.1";
+  version = "18.0.2";
 
   src = fetchFromGitHub {
     owner = "bytecodealliance";
     repo = pname;
     rev = "v${version}";
-    hash = "sha256-wCaDwaD/Xvm++PCrDmXo2Nqn9z07et8AhSI1e1527vc=";
+    hash = "sha256-R/emS2h9YM9LwgQARphFPaX1S62T8Rwqs0uLq1y929o=";
     fetchSubmodules = true;
   };
 
   # Disable cargo-auditable until https://github.com/rust-secure-code/cargo-auditable/issues/124 is solved.
   auditable = false;
-  cargoHash = "sha256-4fKJD3YmwFrHk38PUrpn4BDFkByylqRgPmuVHcVxdSI=";
+  cargoHash = "sha256-r7fmKriChDvd09eynpxVOywBMkArMR4epsmtY6U6JI4=";
   cargoBuildFlags = [ "--package" "wasmtime-cli" "--package" "wasmtime-c-api" ];
 
   outputs = [ "out" "dev" ];