Skip to content

Commit 485e5fc

Browse files
authored
Merge branch 'main' into update-all-lockfiles-1755641120
2 parents b48aa66 + 4e9f04e commit 485e5fc

File tree

18 files changed

+26
-19
lines changed

18 files changed

+26
-19
lines changed

aws/rust-runtime/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws/rust-runtime/aws-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws-config"
3-
version = "1.8.5"
3+
version = "1.8.6"
44
authors = [
55
"AWS Rust SDK Team <[email protected]>",
66
"Russell Cohen <[email protected]>",

aws/rust-runtime/aws-config/src/sts/assume_role.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ impl AssumeRoleProviderBuilder {
203203
/// This enables overriding the connection used to communicate with STS in addition to other internal
204204
/// fields like the time source and sleep implementation used for caching.
205205
///
206-
/// If this field is not provided, configuration from [`aws_config::load_from_env().await`] is used.
206+
/// If this field is not provided, configuration from [`crate::load_from_env()`] is used.
207207
///
208208
/// # Examples
209209
/// ```rust

aws/rust-runtime/aws-credential-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws-credential-types"
3-
version = "1.2.5"
3+
version = "1.2.6"
44
authors = ["AWS Rust SDK Team <[email protected]>"]
55
description = "Types for AWS SDK credentials."
66
edition = "2021"

aws/rust-runtime/aws-credential-types/src/provider.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ construct credentials from hardcoded values.
3333
//!
3434
//! ### With dynamically loaded credentials
3535
//! If you are loading credentials dynamically, you can provide your own implementation of
36-
//! [`ProvideCredentials`](crate::provider::ProvideCredentials). Generally, this is best done by
36+
//! [`ProvideCredentials`]. Generally, this is best done by
3737
//! defining an inherent `async fn` on your structure, then calling that method directly from
3838
//! the trait implementation.
3939
//! ```rust

aws/rust-runtime/aws-credential-types/src/provider/credentials.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ construct credentials from hardcoded values.
3333
//!
3434
//! ### With dynamically loaded credentials
3535
//! If you are loading credentials dynamically, you can provide your own implementation of
36-
//! [`ProvideCredentials`](crate::provider::ProvideCredentials). Generally, this is best done by
36+
//! [`ProvideCredentials`]. Generally, this is best done by
3737
//! defining an inherent `async fn` on your structure, then calling that method directly from
3838
//! the trait implementation.
3939
//! ```rust

codegen-client/src/main/kotlin/software/amazon/smithy/rust/codegen/client/smithy/endpoint/generators/EndpointResolverGenerator.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ internal class EndpointResolverGenerator(
205205
}
206206
207207
impl #{ServiceSpecificEndpointResolver} for DefaultResolver {
208-
fn resolve_endpoint(&self, params: &#{Params}) -> #{EndpointFuture} {
208+
fn resolve_endpoint(&self, params: &#{Params}) -> #{EndpointFuture}<'_> {
209209
#{EndpointFuture}::ready(self.resolve_endpoint(params))
210210
}
211211
}

rust-runtime/Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust-runtime/aws-smithy-checksums/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws-smithy-checksums"
3-
version = "0.63.7"
3+
version = "0.63.8"
44
authors = [
55
"AWS Rust SDK Team <[email protected]>",
66
"Zelda Hessler <[email protected]>",

rust-runtime/aws-smithy-checksums/src/http.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ pub const SHA_256_HEADER_NAME: &str = "x-amz-checksum-sha256";
2121
pub const CRC_64_NVME_HEADER_NAME: &str = "x-amz-checksum-crc64nvme";
2222

2323
// Preserved for compatibility purposes. This should never be used by users, only within smithy-rs
24+
#[warn(dead_code)]
2425
pub(crate) static MD5_HEADER_NAME: &str = "content-md5";
2526

2627
/// When a response has to be checksum-verified, we have to check possible headers until we find the

0 commit comments

Comments
 (0)