From b253c79443c44bbaa235e5971a9141a8372a67d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Cuadrado=20Juan?= Date: Wed, 5 Jun 2024 10:59:42 +0200 Subject: [PATCH] chore(deps): move to wasm32-wasip1 target MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: VĂ­ctor Cuadrado Juan --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4040afa..bda82bc 100644 --- a/Makefile +++ b/Makefile @@ -2,8 +2,8 @@ SOURCE_FILES := $(shell test -e src/ && find src -type f) VERSION := $(shell sed --posix -n 's,^version = \"\(.*\)\",\1,p' Cargo.toml) policy.wasm: $(SOURCE_FILES) Cargo.* - cargo build --target=wasm32-wasi --release - cp target/wasm32-wasi/release/*.wasm policy.wasm + cargo build --target=wasm32-wasip1 --release + cp target/wasm32-wasip1/release/*.wasm policy.wasm artifacthub-pkg.yml: metadata.yml Cargo.toml kwctl scaffold artifacthub --metadata-path metadata.yml --version $(VERSION) \