From cdc075cbcd20cbc947a6e47b29999b029ccb4e92 Mon Sep 17 00:00:00 2001 From: Siddharth Suresh Date: Fri, 8 Sep 2023 15:25:51 -0700 Subject: [PATCH] Bump xdr and use curr instead of next (#1048) --- Cargo.lock | 2 +- Cargo.toml | 2 +- soroban-env-common/Cargo.toml | 2 +- soroban-env-macros/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bbacaf5dd..4ad3e5cdb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1473,7 +1473,7 @@ dependencies = [ [[package]] name = "stellar-xdr" version = "0.0.17" -source = "git+https://github.com/stellar/rs-stellar-xdr?rev=39904e09941046dab61e6e35fc89e31bf2dea1cd#39904e09941046dab61e6e35fc89e31bf2dea1cd" +source = "git+https://github.com/stellar/rs-stellar-xdr?rev=bda0d982ddbb7d32e88ac1eb4f3e5867255b1077#bda0d982ddbb7d32e88ac1eb4f3e5867255b1077" dependencies = [ "arbitrary", "base64 0.13.1", diff --git a/Cargo.toml b/Cargo.toml index bb71e3783..ca8f0addd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ soroban-native-sdk-macros = { version = "0.0.17", path = "soroban-native-sdk-mac [workspace.dependencies.stellar-xdr] version = "0.0.17" git = "https://github.com/stellar/rs-stellar-xdr" -rev = "39904e09941046dab61e6e35fc89e31bf2dea1cd" +rev = "bda0d982ddbb7d32e88ac1eb4f3e5867255b1077" default-features = false [workspace.dependencies.wasmi] diff --git a/soroban-env-common/Cargo.toml b/soroban-env-common/Cargo.toml index 2949454b5..9574ac023 100644 --- a/soroban-env-common/Cargo.toml +++ b/soroban-env-common/Cargo.toml @@ -15,7 +15,7 @@ crate-git-revision = "0.0.6" [dependencies] soroban-env-macros = { workspace = true } -stellar-xdr = { workspace = true, default-features = false, features = [ "next" ] } +stellar-xdr = { workspace = true, default-features = false, features = [ "curr" ] } wasmi = { workspace = true, optional = true } serde = { version = "1.0.0", features = ["derive"], optional = true } static_assertions = "1.1.0" diff --git a/soroban-env-macros/Cargo.toml b/soroban-env-macros/Cargo.toml index 7686338ed..76cc2d21c 100644 --- a/soroban-env-macros/Cargo.toml +++ b/soroban-env-macros/Cargo.toml @@ -13,7 +13,7 @@ rust-version = "1.71" proc-macro = true [dependencies] -stellar-xdr = { workspace = true, features = ["next", "std"] } +stellar-xdr = { workspace = true, features = ["curr", "std"] } syn = {version="2.0",features=["full"]} quote = "1.0" proc-macro2 = "1.0"