diff --git a/aws/rust-runtime/aws-config/Cargo.toml b/aws/rust-runtime/aws-config/Cargo.toml index 64da1aaf04..2cb33239b4 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 7d657f7f6c..17f4949868 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 424c6cab0e..34e5b02b90 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 9605cb0e07..11b85d2ab8 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, {