From dc0de754860c86a8fdf822cf135511e43c878b30 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 30 Nov 2025 23:50:24 +0000 Subject: [PATCH] Update from copier (2025-11-30T23:50:24) Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- .copier-answers.yaml | 2 +- js/Cargo.toml | 2 +- js/package.json | 2 +- rust/Makefile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.copier-answers.yaml b/.copier-answers.yaml index 12d4158..8e6ade4 100644 --- a/.copier-answers.yaml +++ b/.copier-answers.yaml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: 55f9353 +_commit: 61fe43f _src_path: https://github.com/python-project-templates/base.git add_docs: true add_extension: rustjswasm diff --git a/js/Cargo.toml b/js/Cargo.toml index 2dd0e7e..053d577 100644 --- a/js/Cargo.toml +++ b/js/Cargo.toml @@ -13,4 +13,4 @@ crate-type = ["cdylib"] [dependencies] python_template_rust = { path = "../rust", version = "*" } -wasm-bindgen = "0.2.105" +wasm-bindgen = "0.2.106" diff --git a/js/package.json b/js/package.json index 60fc612..a953b11 100644 --- a/js/package.json +++ b/js/package.json @@ -26,7 +26,7 @@ "access": "public" }, "scripts": { - "setup": "cargo install -f wasm-bindgen-cli --version 0.2.105", + "setup": "cargo install -f wasm-bindgen-cli --version 0.2.106", "build:debug": "node build.mjs --debug", "build:rust": "cargo build --release --all-features --target wasm32-unknown-unknown", "build:wasm-bindgen": "wasm-bindgen ../target/wasm32-unknown-unknown/release/python_template_rust.wasm --out-dir ./dist/pkg --target web", diff --git a/rust/Makefile b/rust/Makefile index 11e808e..21d9e91 100644 --- a/rust/Makefile +++ b/rust/Makefile @@ -5,7 +5,7 @@ requirements: ## install required dev dependencies rustup component add clippy cargo install -f cargo-nextest cargo install -f cargo-llvm-cov - cargo install -f wasm-bindgen-cli --version 0.2.105 + cargo install -f wasm-bindgen-cli --version 0.2.106 rustup target add wasm32-unknown-unknown develop: requirements ## install required dev dependencies