From 195d260df4ceff6361a911a5aacf339e92b115a9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 31 Jul 2026 21:14:13 +0000 Subject: [PATCH] fix(deps)(deps): update soroban-sdk requirement in /contracts Updates the requirements on [soroban-sdk](https://github.com/stellar/rs-soroban-sdk) to permit the latest version. - [Release notes](https://github.com/stellar/rs-soroban-sdk/releases) - [Commits](https://github.com/stellar/rs-soroban-sdk/compare/v21.7.7...v27.0.3) --- updated-dependencies: - dependency-name: soroban-sdk dependency-version: 27.0.3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- contracts/Cargo.toml | 2 +- contracts/subscription/Cargo.toml | 4 ++-- contracts/types/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/contracts/Cargo.toml b/contracts/Cargo.toml index 5007a5f4..0a86b589 100644 --- a/contracts/Cargo.toml +++ b/contracts/Cargo.toml @@ -27,5 +27,5 @@ codegen-units = 1 lto = true [workspace.dependencies] -soroban-sdk = "21.7.7" +soroban-sdk = "27.0.3" arbitrary = { version = "1.3", features = ["derive"] } diff --git a/contracts/subscription/Cargo.toml b/contracts/subscription/Cargo.toml index 6e8642a2..fab46e82 100644 --- a/contracts/subscription/Cargo.toml +++ b/contracts/subscription/Cargo.toml @@ -13,10 +13,10 @@ crate-type = ["cdylib", "rlib"] serde = "1.0" [dependencies] -soroban-sdk = "21.0.0" +soroban-sdk = "27.0.3" subtrackr-types = { path = "../types" } [dev-dependencies] -soroban-sdk = { version = "21.0.0", features = ["testutils"] } +soroban-sdk = { version = "27.0.3", features = ["testutils"] } subtrackr-proxy = { path = "../proxy" } subtrackr-storage = { path = "../storage" } diff --git a/contracts/types/Cargo.toml b/contracts/types/Cargo.toml index e2a81f73..20674adb 100644 --- a/contracts/types/Cargo.toml +++ b/contracts/types/Cargo.toml @@ -11,4 +11,4 @@ path = "src/lib.rs" crate-type = ["rlib"] [dependencies] -soroban-sdk = "21.7.7" +soroban-sdk = "27.0.3"