Skip to content

Commit

Permalink
wasm-tools: 1.216.0 -> 1.217.0 (#341059)
Browse files Browse the repository at this point in the history
  • Loading branch information
NickCao authored Sep 27, 2024
2 parents 4984a56 + 13911b1 commit a8566c8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pkgs/tools/misc/wasm-tools/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,23 @@

rustPlatform.buildRustPackage rec {
pname = "wasm-tools";
version = "1.216.0";
version = "1.217.0";

src = fetchFromGitHub {
owner = "bytecodealliance";
repo = pname;
rev = "v${version}";
hash = "sha256-HgeiZo/wXLKYwTQv/gcKHNz3p9jfp/8OYSrum3TPI2Q=";
hash = "sha256-nxfYoR0ba0As00WbahSVFNItSlleMmITqs8eJabjD/U=";
fetchSubmodules = true;
};

# Disable cargo-auditable until https://github.com/rust-secure-code/cargo-auditable/issues/124 is solved.
auditable = false;
cargoHash = "sha256-KS/mg3OZHCyb6IKmbED18xPCblYk0euzdqz7fJl0plI=";
cargoHash = "sha256-mBSRJYSE3HmeWhnW4nFF8uFnUJaZ6wdqsq+GnL6SZWc=";
cargoBuildFlags = [ "--package" "wasm-tools" ];
cargoTestFlags = [ "--all" ];
cargoTestFlags = [ "--all" ] ++
# Due to https://github.com/bytecodealliance/wasm-tools/issues/1820
[ "--" "--test-threads=1" ];

meta = with lib; {
description = "Low level tooling for WebAssembly in Rust";
Expand Down

0 comments on commit a8566c8

Please sign in to comment.