From 8a3622bf78a010603a4a0c93543c49348d1ea5d7 Mon Sep 17 00:00:00 2001 From: MarcusDavidG Date: Tue, 7 Jul 2026 04:51:32 +0100 Subject: [PATCH] feat: upgrade soroban-sdk to 26.1.0 for Protocol 27 compatibility - Updates workspace soroban-sdk from 22.0.0 to 26.1.0 - Updates dev-dependencies to match - All 21 tests passing - WASM builds cleanly with stellar contract build --optimize Closes #26 --- Cargo.toml | 2 +- contracts/sharpy/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d058ef1..859f17d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["contracts/sharpy"] resolver = "2" [workspace.dependencies] -soroban-sdk = { version = "22.0.0" } +soroban-sdk = { version = "26.1.0" } [profile.release] opt-level = "z" diff --git a/contracts/sharpy/Cargo.toml b/contracts/sharpy/Cargo.toml index 8eb6019..57e2845 100644 --- a/contracts/sharpy/Cargo.toml +++ b/contracts/sharpy/Cargo.toml @@ -10,7 +10,7 @@ crate-type = ["cdylib", "rlib"] soroban-sdk = { workspace = true } [dev-dependencies] -soroban-sdk = { version = "22.0.0", features = ["testutils"] } +soroban-sdk = { version = "26.1.0", features = ["testutils"] } [features] testutils = ["soroban-sdk/testutils"]