From 80b6fcd95a4452109da34361a1d8533b6bc4d662 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Jul 2026 18:56:42 +0000 Subject: [PATCH] chore(deps): update borsh requirement in /examples/wasm-demo Updates the requirements on [borsh](https://github.com/near/borsh-rs) to permit the latest version. - [Release notes](https://github.com/near/borsh-rs/releases) - [Changelog](https://github.com/near/borsh-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/near/borsh-rs/compare/borsh-v1.7.0...borsh-v1.8.0) --- updated-dependencies: - dependency-name: borsh dependency-version: 1.8.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index 8950e64..92d923d 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -222,7 +222,7 @@ serde = { version = "1", default-features = false, features = ["derive", "alloc" # to `borsh` can silently shift the handshake bytes and break interop with no # `WIRE_VERSION` change, so it is pinned to an exact version — bump it only as a # deliberate wire change, paired with a vector regeneration. -borsh = { version = "=1.7.0", default-features = false, optional = true, features = ["derive"] } +borsh = { version = "=1.8.0", default-features = false, optional = true, features = ["derive"] } hex = { version = "0.4", default-features = false, optional = true, features = ["alloc"] } base64 = { version = "0.22", default-features = false, optional = true, features = ["alloc"] } anyhow = { version = "1", optional = true }