Unverified Commit 4e9f04e7 authored by AWS SDK Rust Bot's avatar AWS SDK Rust Bot Committed by GitHub
Browse files

Bump rust_nightly_version to 2025-08-06 (#4254)

parents 199ee2a7 4fa0a288
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -85,7 +85,7 @@ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"

[[package]]
name = "aws-credential-types"
version = "1.2.5"
version = "1.2.6"
dependencies = [
 "async-trait",
 "aws-smithy-async",
@@ -231,7 +231,7 @@ dependencies = [

[[package]]
name = "aws-smithy-checksums"
version = "0.63.7"
version = "0.63.8"
dependencies = [
 "aws-smithy-http",
 "aws-smithy-types",
+1 −1
Original line number Diff line number Diff line
[package]
name = "aws-config"
version = "1.8.5"
version = "1.8.6"
authors = [
    "AWS Rust SDK Team <aws-sdk-rust@amazon.com>",
    "Russell Cohen <rcoh@amazon.com>",
+1 −1
Original line number Diff line number Diff line
@@ -203,7 +203,7 @@ impl AssumeRoleProviderBuilder {
    /// This enables overriding the connection used to communicate with STS in addition to other internal
    /// fields like the time source and sleep implementation used for caching.
    ///
    /// If this field is not provided, configuration from [`aws_config::load_from_env().await`] is used.
    /// If this field is not provided, configuration from [`crate::load_from_env()`] is used.
    ///
    /// # Examples
    /// ```rust
+1 −1
Original line number Diff line number Diff line
[package]
name = "aws-credential-types"
version = "1.2.5"
version = "1.2.6"
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>"]
description = "Types for AWS SDK credentials."
edition = "2021"
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ construct credentials from hardcoded values.
//!
//! ### With dynamically loaded credentials
//! If you are loading credentials dynamically, you can provide your own implementation of
//! [`ProvideCredentials`](crate::provider::ProvideCredentials). Generally, this is best done by
//! [`ProvideCredentials`]. Generally, this is best done by
//! defining an inherent `async fn` on your structure, then calling that method directly from
//! the trait implementation.
//! ```rust
Loading