diff --git a/Cargo.lock b/Cargo.lock index 9c6dc35da..4e90de287 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1828,15 +1828,15 @@ dependencies = [ [[package]] name = "soroban-auth" -version = "0.2.0" -source = "git+https://github.com/stellar/rs-soroban-sdk?rev=3ec51a3d#3ec51a3d48a3ffc33e75064c3cfb66a1f704a953" +version = "0.2.1" +source = "git+https://github.com/stellar/rs-soroban-sdk?rev=4d2559c0#4d2559c05f4846d11ae967764b031f297eeeb2d6" dependencies = [ "soroban-sdk", ] [[package]] name = "soroban-cli" -version = "0.2.0" +version = "0.2.1" dependencies = [ "assert_cmd", "assert_fs", @@ -1936,8 +1936,8 @@ dependencies = [ [[package]] name = "soroban-sdk" -version = "0.2.0" -source = "git+https://github.com/stellar/rs-soroban-sdk?rev=3ec51a3d#3ec51a3d48a3ffc33e75064c3cfb66a1f704a953" +version = "0.2.1" +source = "git+https://github.com/stellar/rs-soroban-sdk?rev=4d2559c0#4d2559c05f4846d11ae967764b031f297eeeb2d6" dependencies = [ "bytes-lit", "ed25519-dalek", @@ -1950,8 +1950,8 @@ dependencies = [ [[package]] name = "soroban-sdk-macros" -version = "0.2.0" -source = "git+https://github.com/stellar/rs-soroban-sdk?rev=3ec51a3d#3ec51a3d48a3ffc33e75064c3cfb66a1f704a953" +version = "0.2.1" +source = "git+https://github.com/stellar/rs-soroban-sdk?rev=4d2559c0#4d2559c05f4846d11ae967764b031f297eeeb2d6" dependencies = [ "darling", "itertools", @@ -1966,8 +1966,8 @@ dependencies = [ [[package]] name = "soroban-spec" -version = "0.2.0" -source = "git+https://github.com/stellar/rs-soroban-sdk?rev=3ec51a3d#3ec51a3d48a3ffc33e75064c3cfb66a1f704a953" +version = "0.2.1" +source = "git+https://github.com/stellar/rs-soroban-sdk?rev=4d2559c0#4d2559c05f4846d11ae967764b031f297eeeb2d6" dependencies = [ "base64", "darling", @@ -1988,8 +1988,8 @@ dependencies = [ [[package]] name = "soroban-token-spec" -version = "0.2.0" -source = "git+https://github.com/stellar/rs-soroban-sdk?rev=3ec51a3d#3ec51a3d48a3ffc33e75064c3cfb66a1f704a953" +version = "0.2.1" +source = "git+https://github.com/stellar/rs-soroban-sdk?rev=4d2559c0#4d2559c05f4846d11ae967764b031f297eeeb2d6" dependencies = [ "soroban-auth", "soroban-sdk", @@ -2140,14 +2140,14 @@ checksum = "507e9898683b6c43a9aa55b64259b721b52ba226e0f3779137e50ad114a4c90b" [[package]] name = "test_hello_world" -version = "0.2.0" +version = "0.2.1" dependencies = [ "soroban-sdk", ] [[package]] name = "test_invoker_account_exists" -version = "0.2.0" +version = "0.2.1" dependencies = [ "soroban-sdk", ] diff --git a/Cargo.toml b/Cargo.toml index b4df548f2..12562a581 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ repository = "https://github.com/stellar/soroban-cli" authors = ["Stellar Development Foundation "] license = "Apache-2.0" readme = "README.md" -version = "0.2.0" +version = "0.2.1" edition = "2021" rust-version = "1.64" autobins = false @@ -60,18 +60,18 @@ default-members = ["."] [workspace.dependencies] soroban-env-host = "0.0.9" -soroban-spec = "0.2.0" -soroban-token-spec = "0.2.0" -soroban-auth = "0.2.0" +soroban-spec = "0.2.1" +soroban-token-spec = "0.2.1" +soroban-auth = "0.2.1" stellar-strkey = "0.0.6" -soroban-sdk = "0.2.0" +soroban-sdk = "0.2.1" [patch.crates-io] -soroban-spec = { git = "https://github.com/stellar/rs-soroban-sdk", rev = "3ec51a3d" } -soroban-token-spec = { git = "https://github.com/stellar/rs-soroban-sdk", rev = "3ec51a3d" } -soroban-auth = { git = "https://github.com/stellar/rs-soroban-sdk", rev = "3ec51a3d" } -soroban-sdk = { git = "https://github.com/stellar/rs-soroban-sdk", rev = "3ec51a3d" } -soroban-sdk-macros = { git = "https://github.com/stellar/rs-soroban-sdk", rev = "3ec51a3d" } +soroban-spec = { git = "https://github.com/stellar/rs-soroban-sdk", rev = "4d2559c0" } +soroban-token-spec = { git = "https://github.com/stellar/rs-soroban-sdk", rev = "4d2559c0" } +soroban-auth = { git = "https://github.com/stellar/rs-soroban-sdk", rev = "4d2559c0" } +soroban-sdk = { git = "https://github.com/stellar/rs-soroban-sdk", rev = "4d2559c0" } +soroban-sdk-macros = { git = "https://github.com/stellar/rs-soroban-sdk", rev = "4d2559c0" } stellar-strkey = { git = "https://github.com/stellar/rs-stellar-strkey", rev = "d1b68fd1" } soroban-env-common = { git = "https://github.com/stellar/rs-soroban-env", rev = "c04c2332" } soroban-env-guest = { git = "https://github.com/stellar/rs-soroban-env", rev = "c04c2332" } diff --git a/tests/fixtures/test-wasms/hello_world/Cargo.toml b/tests/fixtures/test-wasms/hello_world/Cargo.toml index ff573b424..86ca0fe43 100644 --- a/tests/fixtures/test-wasms/hello_world/Cargo.toml +++ b/tests/fixtures/test-wasms/hello_world/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_hello_world" -version = "0.2.0" +version = "0.2.1" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/tests/fixtures/test-wasms/invoker_account_exists/Cargo.toml b/tests/fixtures/test-wasms/invoker_account_exists/Cargo.toml index 220107de9..dee2b878d 100644 --- a/tests/fixtures/test-wasms/invoker_account_exists/Cargo.toml +++ b/tests/fixtures/test-wasms/invoker_account_exists/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_invoker_account_exists" -version = "0.2.0" +version = "0.2.1" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021"