diff --git a/aws/rust-runtime/aws-config/Cargo.toml b/aws/rust-runtime/aws-config/Cargo.toml index 64da1aaf043c9b1ebe2a2f6cc553c564e74241da..2cb33239b4cb460b5853a753b6dae44a4f2c1cdb 100644 --- a/aws/rust-runtime/aws-config/Cargo.toml +++ b/aws/rust-runtime/aws-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aws-config" -version = "1.5.12" +version = "1.5.13" authors = [ "AWS Rust SDK Team ", "Russell Cohen ", diff --git a/aws/rust-runtime/aws-config/src/meta/credentials/chain.rs b/aws/rust-runtime/aws-config/src/meta/credentials/chain.rs index 7d657f7f6c89497ca98b20113fe18d03a2ad4dd1..17f49498687b6a69ad38db27d0053ad04183847d 100644 --- a/aws/rust-runtime/aws-config/src/meta/credentials/chain.rs +++ b/aws/rust-runtime/aws-config/src/meta/credentials/chain.rs @@ -114,7 +114,7 @@ impl CredentialsProviderChain { } impl ProvideCredentials for CredentialsProviderChain { - fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'_> + fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'a> where Self: 'a, { diff --git a/aws/rust-runtime/aws-config/src/meta/token.rs b/aws/rust-runtime/aws-config/src/meta/token.rs index 424c6cab0e2002824e7e163293d8c923178e248d..34e5b02b907452e9fde1db1b0bec2a20f8c05023 100644 --- a/aws/rust-runtime/aws-config/src/meta/token.rs +++ b/aws/rust-runtime/aws-config/src/meta/token.rs @@ -105,7 +105,7 @@ impl TokenProviderChain { } impl ProvideToken for TokenProviderChain { - fn provide_token<'a>(&'a self) -> future::ProvideToken<'_> + fn provide_token<'a>(&'a self) -> future::ProvideToken<'a> where Self: 'a, { diff --git a/aws/rust-runtime/aws-config/src/sts/assume_role.rs b/aws/rust-runtime/aws-config/src/sts/assume_role.rs index 9605cb0e0755ec5bfb78bfdc16a4c7d00eb5176d..11b85d2ab8f17448b55cf51b16ab601838339939 100644 --- a/aws/rust-runtime/aws-config/src/sts/assume_role.rs +++ b/aws/rust-runtime/aws-config/src/sts/assume_role.rs @@ -314,7 +314,7 @@ impl Inner { } impl ProvideCredentials for AssumeRoleProvider { - fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'_> + fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'a> where Self: 'a, {