dioxus-cli: update version of wasm-bindgen-cli (#511667)

This commit is contained in:
Florian Klink
2026-04-20 11:22:32 +02:00
committed by GitHub
2 changed files with 21 additions and 2 deletions
+2 -2
View File
@@ -8,7 +8,7 @@
rustfmt,
makeWrapper,
esbuild,
wasm-bindgen-cli_0_2_114,
wasm-bindgen-cli_0_2_118,
testers,
dioxus-cli,
withTelemetry ? false,
@@ -72,7 +72,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
--suffix PATH : ${
lib.makeBinPath [
esbuild
wasm-bindgen-cli_0_2_114
wasm-bindgen-cli_0_2_118
]
}
'';
@@ -0,0 +1,19 @@
{
buildWasmBindgenCli,
fetchCrate,
rustPlatform,
}:
buildWasmBindgenCli rec {
src = fetchCrate {
pname = "wasm-bindgen-cli";
version = "0.2.118";
hash = "sha256-ve783oYH0TGv8Z8lIPdGjItzeLDQLOT5uv/jbFOlZpI=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit src;
inherit (src) pname version;
hash = "sha256-EYDfuBlH3zmTxACBL+sjicRna84CvoesKSQVcYiG9P0=";
};
}