wasm-tools: 1.216.0 -> 1.217.0

This commit is contained in:
Rafael Fernández López 2024-09-10 19:19:25 +02:00
parent 1c299233a4
commit 13911b147d
No known key found for this signature in database
GPG Key ID: A07C55EEE4CCE570

View File

@ -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";