From 822727b37b7ef2eea1fc0bafc558820dc450c67e Mon Sep 17 00:00:00 2001 From: Dmytro Kozhevin Date: Thu, 9 Jan 2025 12:58:00 -0500 Subject: [PATCH] Bump XDR for env. (#1508) ### What Bump XDR for env. This currently only affects the vnext of XDR. ### Why Preparing for Core changes. ### Known limitations N/A --- Cargo.lock | 3 +-- Cargo.toml | 4 ++-- soroban-env-host/Cargo.toml | 4 ++-- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b295cb671..279b8109f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1693,8 +1693,7 @@ dependencies = [ [[package]] name = "stellar-xdr" version = "22.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ce69db907e64d1e70a3dce8d4824655d154749426a6132b25395c49136013e4" +source = "git+https://github.com/stellar/rs-stellar-xdr?rev=28391e81229ad20a3d9ec56e1e1f382205335085#28391e81229ad20a3d9ec56e1e1f382205335085" dependencies = [ "arbitrary", "base64 0.13.1", diff --git a/Cargo.toml b/Cargo.toml index 1f016ed99..a32761bd8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,8 +35,8 @@ wasmparser = "=0.116.1" # NB: When updating, also update the version in rs-soroban-env dev-dependencies [workspace.dependencies.stellar-xdr] version = "=22.1.0" -#git = "https://github.com/stellar/rs-stellar-xdr" -#rev = "67be5955a15f1d3a4df83fe86e6ae107f687141b" +git = "https://github.com/stellar/rs-stellar-xdr" +rev = "28391e81229ad20a3d9ec56e1e1f382205335085" default-features = false [workspace.dependencies.wasmi] diff --git a/soroban-env-host/Cargo.toml b/soroban-env-host/Cargo.toml index fcde6fd54..a5174cbf6 100644 --- a/soroban-env-host/Cargo.toml +++ b/soroban-env-host/Cargo.toml @@ -84,8 +84,8 @@ p256 = {version = "0.13.2", default-features = false, features = ["alloc"]} [dev-dependencies.stellar-xdr] version = "=22.1.0" -#git = "https://github.com/stellar/rs-stellar-xdr" -#rev = "67be5955a15f1d3a4df83fe86e6ae107f687141b" +git = "https://github.com/stellar/rs-stellar-xdr" +rev = "28391e81229ad20a3d9ec56e1e1f382205335085" default-features = false features = ["arbitrary"]