From e7f5dbd110fbb4cfb75374e30e34f2f5eee7623d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 25 Aug 2023 18:53:04 +0000 Subject: [PATCH] Update rust-version (#1071) ### What Update rust-version to latest stable. ### Why Tracking latest stable which receives security updates. Co-authored-by: github-actions[bot] --- soroban-ledger-snapshot/Cargo.toml | 2 +- soroban-sdk-macros/Cargo.toml | 2 +- soroban-sdk/Cargo.toml | 2 +- soroban-spec-rust/Cargo.toml | 2 +- soroban-spec/Cargo.toml | 2 +- soroban-token-sdk/Cargo.toml | 2 +- tests/add_i128/Cargo.toml | 2 +- tests/add_u128/Cargo.toml | 2 +- tests/add_u64/Cargo.toml | 2 +- tests/alloc/Cargo.toml | 2 +- tests/auth/Cargo.toml | 2 +- tests/contract_data/Cargo.toml | 2 +- tests/empty/Cargo.toml | 2 +- tests/empty2/Cargo.toml | 2 +- tests/errors/Cargo.toml | 2 +- tests/events/Cargo.toml | 2 +- tests/fuzz/Cargo.toml | 2 +- tests/import_contract/Cargo.toml | 2 +- tests/invoke_contract/Cargo.toml | 2 +- tests/logging/Cargo.toml | 2 +- tests/multiimpl/Cargo.toml | 2 +- tests/udt/Cargo.toml | 2 +- 22 files changed, 22 insertions(+), 22 deletions(-) diff --git a/soroban-ledger-snapshot/Cargo.toml b/soroban-ledger-snapshot/Cargo.toml index a781a2826..3e90e61f1 100644 --- a/soroban-ledger-snapshot/Cargo.toml +++ b/soroban-ledger-snapshot/Cargo.toml @@ -8,7 +8,7 @@ readme = "../README.md" license = "Apache-2.0" version.workspace = true edition = "2021" -rust-version = "1.71" +rust-version = "1.72" [dependencies] soroban-env-host = { workspace = true } diff --git a/soroban-sdk-macros/Cargo.toml b/soroban-sdk-macros/Cargo.toml index e3285c235..b0d4657fb 100644 --- a/soroban-sdk-macros/Cargo.toml +++ b/soroban-sdk-macros/Cargo.toml @@ -8,7 +8,7 @@ readme = "../README.md" license = "Apache-2.0" version.workspace = true edition = "2021" -rust-version = "1.71" +rust-version = "1.72" [lib] proc-macro = true diff --git a/soroban-sdk/Cargo.toml b/soroban-sdk/Cargo.toml index 8e6e87cd6..73a45231d 100644 --- a/soroban-sdk/Cargo.toml +++ b/soroban-sdk/Cargo.toml @@ -8,7 +8,7 @@ readme = "README.md" license = "Apache-2.0" version.workspace = true edition = "2021" -rust-version = "1.71" +rust-version = "1.72" [lib] doctest = false diff --git a/soroban-spec-rust/Cargo.toml b/soroban-spec-rust/Cargo.toml index 45390cfe9..f2f43a5df 100644 --- a/soroban-spec-rust/Cargo.toml +++ b/soroban-spec-rust/Cargo.toml @@ -8,7 +8,7 @@ readme = "../README.md" license = "Apache-2.0" version.workspace = true edition = "2021" -rust-version = "1.71" +rust-version = "1.72" [dependencies] stellar-xdr = { workspace = true, features = ["next", "std", "serde"] } diff --git a/soroban-spec/Cargo.toml b/soroban-spec/Cargo.toml index 08bd12827..2ec305469 100644 --- a/soroban-spec/Cargo.toml +++ b/soroban-spec/Cargo.toml @@ -8,7 +8,7 @@ readme = "../README.md" license = "Apache-2.0" version.workspace = true edition = "2021" -rust-version = "1.71" +rust-version = "1.72" [dependencies] stellar-xdr = { workspace = true, features = ["next", "std", "serde"] } diff --git a/soroban-token-sdk/Cargo.toml b/soroban-token-sdk/Cargo.toml index 005e751b1..aeb6e84c2 100644 --- a/soroban-token-sdk/Cargo.toml +++ b/soroban-token-sdk/Cargo.toml @@ -8,7 +8,7 @@ readme = "../README.md" license = "Apache-2.0" version.workspace = true edition = "2021" -rust-version = "1.71" +rust-version = "1.72" [lib] crate-type = ["cdylib", "rlib"] diff --git a/tests/add_i128/Cargo.toml b/tests/add_i128/Cargo.toml index b1b0826c0..67cd429b9 100644 --- a/tests/add_i128/Cargo.toml +++ b/tests/add_i128/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" publish = false -rust-version = "1.71" +rust-version = "1.72" [lib] crate-type = ["cdylib"] diff --git a/tests/add_u128/Cargo.toml b/tests/add_u128/Cargo.toml index b86376abd..e1b5fa8b1 100644 --- a/tests/add_u128/Cargo.toml +++ b/tests/add_u128/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" publish = false -rust-version = "1.71" +rust-version = "1.72" [lib] crate-type = ["cdylib"] diff --git a/tests/add_u64/Cargo.toml b/tests/add_u64/Cargo.toml index e27e42c78..1174e67a7 100644 --- a/tests/add_u64/Cargo.toml +++ b/tests/add_u64/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" publish = false -rust-version = "1.71" +rust-version = "1.72" [lib] crate-type = ["cdylib"] diff --git a/tests/alloc/Cargo.toml b/tests/alloc/Cargo.toml index ff503445e..1f20f6f3a 100644 --- a/tests/alloc/Cargo.toml +++ b/tests/alloc/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" publish = false -rust-version = "1.71" +rust-version = "1.72" [lib] crate-type = ["cdylib"] diff --git a/tests/auth/Cargo.toml b/tests/auth/Cargo.toml index 44fad7c6d..753c43936 100644 --- a/tests/auth/Cargo.toml +++ b/tests/auth/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" publish = false -rust-version = "1.71" +rust-version = "1.72" [lib] crate-type = ["cdylib"] diff --git a/tests/contract_data/Cargo.toml b/tests/contract_data/Cargo.toml index c12ec6992..d2eb55e8c 100644 --- a/tests/contract_data/Cargo.toml +++ b/tests/contract_data/Cargo.toml @@ -4,7 +4,7 @@ version.workspace = true authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" -rust-version = "1.71" +rust-version = "1.72" publish = false [lib] diff --git a/tests/empty/Cargo.toml b/tests/empty/Cargo.toml index 4aeeaab02..95a526c9f 100644 --- a/tests/empty/Cargo.toml +++ b/tests/empty/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" publish = false -rust-version = "1.71" +rust-version = "1.72" [lib] crate-type = ["cdylib"] diff --git a/tests/empty2/Cargo.toml b/tests/empty2/Cargo.toml index 96eabc1ed..53f9cf2f9 100644 --- a/tests/empty2/Cargo.toml +++ b/tests/empty2/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" publish = false -rust-version = "1.71" +rust-version = "1.72" [lib] crate-type = ["cdylib"] diff --git a/tests/errors/Cargo.toml b/tests/errors/Cargo.toml index 32658975c..f07d43871 100644 --- a/tests/errors/Cargo.toml +++ b/tests/errors/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" publish = false -rust-version = "1.71" +rust-version = "1.72" [lib] crate-type = ["cdylib"] diff --git a/tests/events/Cargo.toml b/tests/events/Cargo.toml index 1a3ee5581..d34bdf24c 100644 --- a/tests/events/Cargo.toml +++ b/tests/events/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" publish = false -rust-version = "1.71" +rust-version = "1.72" [lib] crate-type = ["cdylib"] diff --git a/tests/fuzz/Cargo.toml b/tests/fuzz/Cargo.toml index 85cad1d19..8b9403d3a 100644 --- a/tests/fuzz/Cargo.toml +++ b/tests/fuzz/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" publish = false -rust-version = "1.71" +rust-version = "1.72" [lib] # Adding rlib is required so that the test_fuzz crate can be imported as a diff --git a/tests/import_contract/Cargo.toml b/tests/import_contract/Cargo.toml index 39f16836c..243dc008c 100644 --- a/tests/import_contract/Cargo.toml +++ b/tests/import_contract/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" publish = false -rust-version = "1.71" +rust-version = "1.72" [lib] crate-type = ["cdylib"] diff --git a/tests/invoke_contract/Cargo.toml b/tests/invoke_contract/Cargo.toml index b0b6ceeb1..cb02cdc51 100644 --- a/tests/invoke_contract/Cargo.toml +++ b/tests/invoke_contract/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" publish = false -rust-version = "1.71" +rust-version = "1.72" [lib] crate-type = ["cdylib"] diff --git a/tests/logging/Cargo.toml b/tests/logging/Cargo.toml index 9ad069331..e4bc99a74 100644 --- a/tests/logging/Cargo.toml +++ b/tests/logging/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" publish = false -rust-version = "1.71" +rust-version = "1.72" [lib] crate-type = ["cdylib"] diff --git a/tests/multiimpl/Cargo.toml b/tests/multiimpl/Cargo.toml index 8017e0cbd..21336a696 100644 --- a/tests/multiimpl/Cargo.toml +++ b/tests/multiimpl/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" publish = false -rust-version = "1.71" +rust-version = "1.72" [lib] crate-type = ["cdylib"] diff --git a/tests/udt/Cargo.toml b/tests/udt/Cargo.toml index 95bfafe54..dfd166a71 100644 --- a/tests/udt/Cargo.toml +++ b/tests/udt/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Stellar Development Foundation "] license = "Apache-2.0" edition = "2021" publish = false -rust-version = "1.71" +rust-version = "1.72" [lib] crate-type = ["cdylib"]