From c87ba990ffdfbdad94702c7156513f07cd2cc054 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 25 Jan 2026 21:18:06 +0000 Subject: [PATCH] deps(rust)(deps): bump the rust-plugins group Updates the requirements on [thiserror](https://github.com/dtolnay/thiserror), [wasmtime](https://github.com/bytecodealliance/wasmtime) and [wasmtime-wasi](https://github.com/bytecodealliance/wasmtime) to permit the latest version. Updates `thiserror` to 2.0.18 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](https://github.com/dtolnay/thiserror/compare/1.0.0...2.0.18) Updates `wasmtime` to 40.0.2 - [Release notes](https://github.com/bytecodealliance/wasmtime/releases) - [Changelog](https://github.com/bytecodealliance/wasmtime/blob/v40.0.2/RELEASES.md) - [Commits](https://github.com/bytecodealliance/wasmtime/compare/v18.0.0...v40.0.2) Updates `wasmtime-wasi` to 40.0.2 - [Release notes](https://github.com/bytecodealliance/wasmtime/releases) - [Changelog](https://github.com/bytecodealliance/wasmtime/blob/v40.0.2/RELEASES.md) - [Commits](https://github.com/bytecodealliance/wasmtime/compare/v18.0.0...v40.0.2) --- updated-dependencies: - dependency-name: thiserror dependency-version: 2.0.18 dependency-type: direct:production dependency-group: rust-plugins - dependency-name: wasmtime dependency-version: 40.0.2 dependency-type: direct:production dependency-group: rust-plugins - dependency-name: wasmtime-wasi dependency-version: 40.0.2 dependency-type: direct:production dependency-group: rust-plugins ... Signed-off-by: dependabot[bot] --- crates/signia-plugins/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/signia-plugins/Cargo.toml b/crates/signia-plugins/Cargo.toml index a6c1082..68c859c 100644 --- a/crates/signia-plugins/Cargo.toml +++ b/crates/signia-plugins/Cargo.toml @@ -22,12 +22,12 @@ signia-core = { path = "../signia-core", version = "0.1.0", default-features = f serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -thiserror = "1.0" +thiserror = "2.0" anyhow = "1.0" # Optional WASM sandbox support -wasmtime = { version = "18.0", optional = true } -wasmtime-wasi = { version = "18.0", optional = true } +wasmtime = { version = "41.0", optional = true } +wasmtime-wasi = { version = "41.0", optional = true } [dev-dependencies] tempfile = "3.10"