Unverified Commit a8566c88 authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

wasm-tools: 1.216.0 -> 1.217.0 (#341059)

parents 4984a56a 13911b14
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -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";