diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 5b874bf47..ef3ef8d06 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -77,5 +77,5 @@ jobs: uses: stellar/actions/.github/workflows/rust-publish-dry-run.yml@main with: runs-on: ${{ matrix.sys.os }} - target: --target ${{ matrix.sys.target }} + target: ${ matrix.sys.target }} cargo-hack-feature-options: ${{ matrix.sys.cargo-hack-feature-options }} diff --git a/Cargo.lock b/Cargo.lock index 0b1b0376a..5ed479424 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -870,7 +870,7 @@ dependencies = [ [[package]] name = "soroban-auth" -version = "0.2.0" +version = "0.2.1" dependencies = [ "ed25519-dalek", "rand 0.7.3", @@ -945,7 +945,7 @@ dependencies = [ [[package]] name = "soroban-sdk" -version = "0.2.0" +version = "0.2.1" dependencies = [ "bytes-lit", "ed25519-dalek", @@ -961,7 +961,7 @@ dependencies = [ [[package]] name = "soroban-sdk-macros" -version = "0.2.0" +version = "0.2.1" dependencies = [ "darling", "itertools", @@ -976,7 +976,7 @@ dependencies = [ [[package]] name = "soroban-spec" -version = "0.2.0" +version = "0.2.1" dependencies = [ "base64", "darling", @@ -998,7 +998,7 @@ dependencies = [ [[package]] name = "soroban-token-spec" -version = "0.2.0" +version = "0.2.1" dependencies = [ "ed25519-dalek", "rand 0.7.3", @@ -1107,70 +1107,70 @@ dependencies = [ [[package]] name = "test_add_bigint" -version = "0.2.0" +version = "0.2.1" dependencies = [ "soroban-sdk", ] [[package]] name = "test_add_u64" -version = "0.2.0" +version = "0.2.1" dependencies = [ "soroban-sdk", ] [[package]] name = "test_contract_data" -version = "0.2.0" +version = "0.2.1" dependencies = [ "soroban-sdk", ] [[package]] name = "test_empty" -version = "0.2.0" +version = "0.2.1" dependencies = [ "soroban-sdk", ] [[package]] name = "test_errors" -version = "0.2.0" +version = "0.2.1" dependencies = [ "soroban-sdk", ] [[package]] name = "test_events" -version = "0.2.0" +version = "0.2.1" dependencies = [ "soroban-sdk", ] [[package]] name = "test_import_contract" -version = "0.2.0" +version = "0.2.1" dependencies = [ "soroban-sdk", ] [[package]] name = "test_invoke_contract" -version = "0.2.0" +version = "0.2.1" dependencies = [ "soroban-sdk", ] [[package]] name = "test_logging" -version = "0.2.0" +version = "0.2.1" dependencies = [ "soroban-sdk", ] [[package]] name = "test_udt" -version = "0.2.0" +version = "0.2.1" dependencies = [ "soroban-sdk", ] diff --git a/soroban-auth/Cargo.toml b/soroban-auth/Cargo.toml index ee6b305e8..15bfe7702 100644 --- a/soroban-auth/Cargo.toml +++ b/soroban-auth/Cargo.toml @@ -6,7 +6,7 @@ repository = "https://github.com/stellar/rs-soroban-sdk" authors = ["Stellar Development Foundation "] readme = "../README.md" license = "Apache-2.0" -version = "0.2.0" +version = "0.2.1" edition = "2021" rust-version = "1.64" @@ -18,14 +18,14 @@ testutils = ["soroban-sdk/testutils", "dep:ed25519-dalek", "dep:rand"] docs = [] [dependencies] -soroban-sdk = "0.2.0" +soroban-sdk = "0.2.1" [target.'cfg(not(target_family="wasm"))'.dependencies] ed25519-dalek = { version = "1.0.1", optional = true } rand = { version = "0.7.3", optional = true } [dev_dependencies] -soroban-sdk = { version = "0.2.0", features = ["testutils"] } +soroban-sdk = { version = "0.2.1", features = ["testutils"] } ed25519-dalek = { version = "1.0.1" } rand = { version = "0.7.3" } diff --git a/soroban-sdk-macros/Cargo.toml b/soroban-sdk-macros/Cargo.toml index c2d039a27..d2fce2df8 100644 --- a/soroban-sdk-macros/Cargo.toml +++ b/soroban-sdk-macros/Cargo.toml @@ -6,7 +6,7 @@ repository = "https://github.com/stellar/rs-soroban-sdk" authors = ["Stellar Development Foundation "] readme = "../README.md" license = "Apache-2.0" -version = "0.2.0" +version = "0.2.1" edition = "2021" rust-version = "1.64" @@ -15,7 +15,7 @@ proc-macro = true doctest = false [dependencies] -soroban-spec = "0.2.0" +soroban-spec = "0.2.1" soroban-env-common = { workspace = true } stellar-xdr = { workspace = true, features = ["next", "std"] } syn = {version="1.0",features=["full"]} diff --git a/soroban-sdk/Cargo.toml b/soroban-sdk/Cargo.toml index 475a71479..3ca704e21 100644 --- a/soroban-sdk/Cargo.toml +++ b/soroban-sdk/Cargo.toml @@ -6,7 +6,7 @@ repository = "https://github.com/stellar/rs-soroban-sdk" authors = ["Stellar Development Foundation "] readme = "../README.md" license = "Apache-2.0" -version = "0.2.0" +version = "0.2.1" edition = "2021" rust-version = "1.64" @@ -14,7 +14,7 @@ rust-version = "1.64" doctest = false [dependencies] -soroban-sdk-macros = { version = "0.2.0" } +soroban-sdk-macros = { version = "0.2.1" } bytes-lit = "0.0.4" [target.'cfg(target_family="wasm")'.dependencies] @@ -29,7 +29,7 @@ rand = "0.8.5" [dev-dependencies] soroban-env-host = { workspace = true, features = ["vm", "hostfn_log_fmt_values", "testutils"] } stellar-xdr = { workspace = true, features = ["next", "std"] } -soroban-spec = "0.2.0" +soroban-spec = "0.2.1" ed25519-dalek = "1.0.1" rand = "0.8.5" hex = "0.4.3" diff --git a/soroban-spec/Cargo.toml b/soroban-spec/Cargo.toml index 7510915e1..4b9ac3ef5 100644 --- a/soroban-spec/Cargo.toml +++ b/soroban-spec/Cargo.toml @@ -6,7 +6,7 @@ repository = "https://github.com/stellar/rs-soroban-sdk" authors = ["Stellar Development Foundation "] readme = "../README.md" license = "Apache-2.0" -version = "0.2.0" +version = "0.2.1" edition = "2021" rust-version = "1.64" diff --git a/soroban-token-spec/Cargo.toml b/soroban-token-spec/Cargo.toml index f2e2c6f7e..35e4cd014 100644 --- a/soroban-token-spec/Cargo.toml +++ b/soroban-token-spec/Cargo.toml @@ -6,7 +6,7 @@ repository = "https://github.com/stellar/rs-soroban-sdk" authors = ["Stellar Development Foundation "] readme = "../README.md" license = "Apache-2.0" -version = "0.2.0" +version = "0.2.1" edition = "2021" rust-version = "1.64" @@ -18,14 +18,14 @@ doctest = false testutils = ["soroban-sdk/testutils", "dep:ed25519-dalek", "dep:rand"] [dependencies] -soroban-sdk = "0.2.0" -soroban-auth = "0.2.0" +soroban-sdk = "0.2.1" +soroban-auth = "0.2.1" [target.'cfg(not(target_family="wasm"))'.dependencies] ed25519-dalek = { version = "1.0.1", optional = true } rand = { version = "0.7.3", optional = true } [dev_dependencies] -soroban-auth = { version = "0.2.0", features = ["testutils"] } +soroban-auth = { version = "0.2.1", features = ["testutils"] } ed25519-dalek = { version = "1.0.1" } rand = { version = "0.7.3" } diff --git a/tests/add_bigint/Cargo.toml b/tests/add_bigint/Cargo.toml index 0b81c8cbb..41fa9e910 100644 --- a/tests/add_bigint/Cargo.toml +++ b/tests/add_bigint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_add_bigint" -version = "0.2.0" +version = "0.2.1" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/tests/add_u64/Cargo.toml b/tests/add_u64/Cargo.toml index 133169780..7d88036bb 100644 --- a/tests/add_u64/Cargo.toml +++ b/tests/add_u64/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_add_u64" -version = "0.2.0" +version = "0.2.1" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/tests/contract_data/Cargo.toml b/tests/contract_data/Cargo.toml index dc05e3e20..984da1efc 100644 --- a/tests/contract_data/Cargo.toml +++ b/tests/contract_data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_contract_data" -version = "0.2.0" +version = "0.2.1" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/tests/empty/Cargo.toml b/tests/empty/Cargo.toml index 7470938cb..198071364 100644 --- a/tests/empty/Cargo.toml +++ b/tests/empty/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_empty" -version = "0.2.0" +version = "0.2.1" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/tests/errors/Cargo.toml b/tests/errors/Cargo.toml index e873b6928..7831677d2 100644 --- a/tests/errors/Cargo.toml +++ b/tests/errors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_errors" -version = "0.2.0" +version = "0.2.1" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/tests/events/Cargo.toml b/tests/events/Cargo.toml index 42f5b0ab4..9fd053381 100644 --- a/tests/events/Cargo.toml +++ b/tests/events/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_events" -version = "0.2.0" +version = "0.2.1" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/tests/import_contract/Cargo.toml b/tests/import_contract/Cargo.toml index 917e5c286..92ad738dd 100644 --- a/tests/import_contract/Cargo.toml +++ b/tests/import_contract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_import_contract" -version = "0.2.0" +version = "0.2.1" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/tests/invoke_contract/Cargo.toml b/tests/invoke_contract/Cargo.toml index c1a857951..cf99cba51 100644 --- a/tests/invoke_contract/Cargo.toml +++ b/tests/invoke_contract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_invoke_contract" -version = "0.2.0" +version = "0.2.1" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/tests/logging/Cargo.toml b/tests/logging/Cargo.toml index ad973564f..45ab66ffa 100644 --- a/tests/logging/Cargo.toml +++ b/tests/logging/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_logging" -version = "0.2.0" +version = "0.2.1" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" diff --git a/tests/udt/Cargo.toml b/tests/udt/Cargo.toml index f06eb7cff..5b7289d51 100644 --- a/tests/udt/Cargo.toml +++ b/tests/udt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test_udt" -version = "0.2.0" +version = "0.2.1" authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021"