From 9bc822f6f81431ce361b09013e0868ccfc0b8c80 Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Thu, 3 Oct 2024 03:30:55 +1000 Subject: [PATCH] Update env and xdr (#1357) ### What Update env and xdr ### Why Routine. So that cli can use the latest xdr lib. --- Cargo.lock | 24 ++++++++++++------------ Cargo.toml | 8 ++++---- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e46637cec..4f39dd240 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1216,9 +1216,9 @@ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" [[package]] name = "soroban-builtin-sdk-macros" -version = "22.0.0-rc.1" +version = "22.0.0-rc.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be386d7dac0fa8420ea769716fbb73077b6c0e50e55068d69be97bd97424072f" +checksum = "6e4c8668199d95e3061cd42e1b96a91451c656a238a607fa53f96f0a3fdcf5f3" dependencies = [ "itertools", "proc-macro2", @@ -1228,9 +1228,9 @@ dependencies = [ [[package]] name = "soroban-env-common" -version = "22.0.0-rc.1" +version = "22.0.0-rc.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5bc59f0172caff4867ea71e0b65ff8a532d10612ff78c791a01e23fc33521a9a" +checksum = "6bdf1d66133d6b29e2834acea79decb57c47c71aa01885cae2b9ad621d67525c" dependencies = [ "arbitrary", "crate-git-revision", @@ -1247,9 +1247,9 @@ dependencies = [ [[package]] name = "soroban-env-guest" -version = "22.0.0-rc.1" +version = "22.0.0-rc.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08f608c23236e1c5ee28fbeef406b6fcf2dc089e784311811c7dd55e23927f3d" +checksum = "fa9610ac8a4a900e6f35b2ed171bc325c7e9883929f5e9da758e85f1226dd284" dependencies = [ "soroban-env-common", "static_assertions", @@ -1257,9 +1257,9 @@ dependencies = [ [[package]] name = "soroban-env-host" -version = "22.0.0-rc.1" +version = "22.0.0-rc.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ed9a8d688939f86e38c90dea03ff6f0bf4917f1b3aee510794133e58070c568" +checksum = "0c695d22888ede1f98c016a4a690be307817d133be0e0f32a25fd6e53bb6c929" dependencies = [ "ark-bls12-381", "ark-ec", @@ -1293,9 +1293,9 @@ dependencies = [ [[package]] name = "soroban-env-macros" -version = "22.0.0-rc.1" +version = "22.0.0-rc.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ed871b77a7e06adb5b61f792aac3d23c5180c56b4c9bba59ecdc38d5f468cf5" +checksum = "d926d0daa3ba798cd70ce962ea10012e630d75088352369a6d248b2644dd7a2c" dependencies = [ "itertools", "proc-macro2", @@ -1446,9 +1446,9 @@ dependencies = [ [[package]] name = "stellar-xdr" -version = "22.0.0-rc.1" +version = "22.0.0-rc.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1946827903a221bf052e24e18f0ed6fb10ca350c9281911f24b7d7a9726ab181" +checksum = "c88dc0e928b9cb65ea43836b52560bb4ead3e32895f5019ca223dc7cd1966cbf" dependencies = [ "arbitrary", "base64 0.13.1", diff --git a/Cargo.toml b/Cargo.toml index c609f42ef..bf8828757 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,17 +24,17 @@ soroban-ledger-snapshot = { version = "22.0.0-rc.1", path = "soroban-ledger-snap soroban-token-sdk = { version = "22.0.0-rc.1", path = "soroban-token-sdk" } [workspace.dependencies.soroban-env-common] -version = "=22.0.0-rc.1" +version = "=22.0.0-rc.1.1" #git = "https://github.com/stellar/rs-soroban-env" #rev = "60e9be87a157cc9b5132056e1314faabd485b5fb" [workspace.dependencies.soroban-env-guest] -version = "=22.0.0-rc.1" +version = "=22.0.0-rc.1.1" #git = "https://github.com/stellar/rs-soroban-env" #rev = "60e9be87a157cc9b5132056e1314faabd485b5fb" [workspace.dependencies.soroban-env-host] -version = "=22.0.0-rc.1" +version = "=22.0.0-rc.1.1" #git = "https://github.com/stellar/rs-soroban-env" #rev = "60e9be87a157cc9b5132056e1314faabd485b5fb" @@ -42,7 +42,7 @@ version = "=22.0.0-rc.1" version = "=0.0.9" [workspace.dependencies.stellar-xdr] -version = "=22.0.0-rc.1" +version = "=22.0.0-rc.1.1" default-features = false features = ["curr"] #git = "https://github.com/stellar/rs-stellar-xdr"