AWS SDK

AWS SDK

rev. 84b4a04800f25b137dccbc3932656b0ca987e9e5 (ignoring whitespace)

Files changed:

tmp-codegen-diff/aws-sdk/sdk/aws-config/Cargo.toml

@@ -41,41 +101,101 @@
   61     61   
path = "../aws-smithy-http"
   62     62   
version = "0.62.6"
   63     63   
   64     64   
[dependencies.aws-smithy-json]
   65     65   
path = "../aws-smithy-json"
   66     66   
version = "0.61.9"
   67     67   
   68     68   
[dependencies.aws-smithy-runtime]
   69     69   
path = "../aws-smithy-runtime"
   70     70   
features = ["client"]
   71         -
version = "1.9.5"
          71  +
version = "1.9.6"
   72     72   
   73     73   
[dependencies.aws-smithy-runtime-api]
   74     74   
path = "../aws-smithy-runtime-api"
   75     75   
features = ["client"]
   76     76   
version = "1.9.3"
   77     77   
   78     78   
[dependencies.aws-smithy-types]
   79     79   
path = "../aws-smithy-types"
   80     80   
version = "1.3.5"
   81     81   
@@ -136,136 +187,187 @@
  156    156   
version = "1.2.7"
  157    157   
  158    158   
[dev-dependencies.aws-smithy-http-client]
  159    159   
path = "../aws-smithy-http-client"
  160    160   
features = ["default-client", "test-util"]
  161    161   
version = "1.1.5"
  162    162   
  163    163   
[dev-dependencies.aws-smithy-runtime]
  164    164   
path = "../aws-smithy-runtime"
  165    165   
features = ["client", "test-util"]
  166         -
version = "1.9.5"
         166  +
version = "1.9.6"
  167    167   
  168    168   
[dev-dependencies.aws-smithy-runtime-api]
  169    169   
path = "../aws-smithy-runtime-api"
  170    170   
features = ["test-util"]
  171    171   
version = "1.9.3"
  172    172   
  173    173   
[dev-dependencies.futures-util]
  174    174   
version = "0.3.29"
  175    175   
default-features = false
  176    176   

tmp-codegen-diff/aws-sdk/sdk/aws-runtime/Cargo.toml

@@ -29,29 +89,89 @@
   49     49   
optional = true
   50     50   
version = "0.60.14"
   51     51   
   52     52   
[dependencies.aws-smithy-http]
   53     53   
path = "../aws-smithy-http"
   54     54   
version = "0.62.6"
   55     55   
   56     56   
[dependencies.aws-smithy-runtime]
   57     57   
path = "../aws-smithy-runtime"
   58     58   
features = ["client"]
   59         -
version = "1.9.5"
          59  +
version = "1.9.6"
   60     60   
   61     61   
[dependencies.aws-smithy-runtime-api]
   62     62   
path = "../aws-smithy-runtime-api"
   63     63   
features = ["client"]
   64     64   
version = "1.9.3"
   65     65   
   66     66   
[dependencies.aws-smithy-types]
   67     67   
path = "../aws-smithy-types"
   68     68   
version = "1.3.5"
   69     69   

tmp-codegen-diff/aws-sdk/sdk/aws-smithy-mocks/Cargo.toml

@@ -15,15 +0,45 @@
   35     35   
features = ["full"]
   36     36   
   37     37   
[dev-dependencies.aws-smithy-async]
   38     38   
path = "../aws-smithy-async"
   39     39   
features = ["rt-tokio"]
   40     40   
version = "1.2.7"
   41     41   
   42     42   
[dev-dependencies.aws-smithy-runtime]
   43     43   
path = "../aws-smithy-runtime"
   44     44   
features = ["client"]
   45         -
version = "1.9.5"
          45  +
version = "1.9.6"

tmp-codegen-diff/aws-sdk/sdk/aws-smithy-runtime/Cargo.toml

@@ -1,1 +34,34 @@
    1      1   
# Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
    2      2   
[package]
    3      3   
name = "aws-smithy-runtime"
    4         -
version = "1.9.5"
           4  +
version = "1.9.6"
    5      5   
authors = ["AWS Rust SDK Team <aws-sdk-rust@amazon.com>", "Zelda Hessler <zhessler@amazon.com>"]
    6      6   
description = "The new smithy runtime crate"
    7      7   
edition = "2021"
    8      8   
license = "Apache-2.0"
    9      9   
repository = "https://github.com/smithy-lang/smithy-rs"
   10     10   
rust-version = "1.88"
   11     11   
[package.metadata.docs.rs]
   12     12   
all-features = true
   13     13   
targets = ["x86_64-unknown-linux-gnu"]
   14     14   
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]

tmp-codegen-diff/aws-sdk/sdk/aws-smithy-runtime/src/client/defaults.rs

@@ -148,148 +208,234 @@
  168    168   
  169    169   
/// Runtime plugin that sets the default timeout config (no timeouts).
  170    170   
pub fn default_timeout_config_plugin() -> Option<SharedRuntimePlugin> {
  171    171   
    Some(
  172    172   
        default_plugin("default_timeout_config_plugin", |components| {
  173    173   
            components.with_config_validator(SharedConfigValidator::base_client_config_fn(
  174    174   
                validate_timeout_config,
  175    175   
            ))
  176    176   
        })
  177    177   
        .with_config(layer("default_timeout_config", |layer| {
  178         -
            layer.store_put(TimeoutConfig::disabled());
         178  +
            layer.store_put(
         179  +
                TimeoutConfig::builder()
         180  +
                    .connect_timeout(Duration::from_millis(3100))
         181  +
                    .build(),
         182  +
            );
         183  +
        }))
         184  +
        .into_shared(),
         185  +
    )
         186  +
}
         187  +
         188  +
/// Runtime plugin that sets the default timeout config (no timeouts).
         189  +
pub fn default_timeout_config_plugin_v2() -> Option<SharedRuntimePlugin> {
         190  +
    Some(
         191  +
        default_plugin("default_timeout_config_plugin", |components| {
         192  +
            components.with_config_validator(SharedConfigValidator::base_client_config_fn(
         193  +
                validate_timeout_config,
         194  +
            ))
         195  +
        })
         196  +
        .with_config(layer("default_timeout_config", |layer| {
         197  +
            let timeout_config = if default_sleep_impl_plugin().is_some() {
         198  +
                TimeoutConfig::builder()
         199  +
                    .connect_timeout(Duration::from_millis(3100))
         200  +
                    .build()
         201  +
            } else {
         202  +
                TimeoutConfig::disabled()
         203  +
            };
         204  +
            layer.store_put(timeout_config);
  179    205   
        }))
  180    206   
        .into_shared(),
  181    207   
    )
  182    208   
}
  183    209   
  184    210   
fn validate_timeout_config(
  185    211   
    components: &RuntimeComponentsBuilder,
  186    212   
    cfg: &ConfigBag,
  187    213   
) -> Result<(), BoxError> {
  188    214   
    if let Some(timeout_config) = cfg.load::<TimeoutConfig>() {
@@ -300,326 +360,386 @@
  320    346   
    [
  321    347   
        default_http_client_plugin_v2(behavior_version),
  322    348   
        default_identity_cache_plugin(),
  323    349   
        default_retry_config_plugin(
  324    350   
            params
  325    351   
                .retry_partition_name
  326    352   
                .expect("retry_partition_name is required"),
  327    353   
        ),
  328    354   
        default_sleep_impl_plugin(),
  329    355   
        default_time_source_plugin(),
  330         -
        default_timeout_config_plugin(),
         356  +
        default_timeout_config_plugin_v2(),
  331    357   
        enforce_content_length_runtime_plugin(),
  332    358   
        default_stalled_stream_protection_config_plugin_v2(behavior_version),
  333    359   
    ]
  334    360   
    .into_iter()
  335    361   
    .flatten()
  336    362   
    .collect::<Vec<SharedRuntimePlugin>>()
  337    363   
}
  338    364   
  339    365   
#[cfg(test)]
  340    366   
mod tests {

tmp-codegen-diff/aws-sdk/sdk/aws-types/Cargo.toml

@@ -13,13 +71,71 @@
   33     33   
path = "../aws-smithy-async"
   34     34   
version = "1.2.7"
   35     35   
   36     36   
[dependencies.aws-smithy-types]
   37     37   
path = "../aws-smithy-types"
   38     38   
version = "1.3.5"
   39     39   
   40     40   
[dependencies.aws-smithy-runtime]
   41     41   
path = "../aws-smithy-runtime"
   42     42   
optional = true
   43         -
version = "1.9.5"
          43  +
version = "1.9.6"
   44     44   
   45     45   
[dependencies.aws-smithy-runtime-api]
   46     46   
path = "../aws-smithy-runtime-api"
   47     47   
features = ["client"]
   48     48   
version = "1.9.3"
   49     49   
   50     50   
[dependencies.hyper-rustls]
   51     51   
version = "0.24.2"
   52     52   
optional = true
   53     53   
default-features = false

tmp-codegen-diff/aws-sdk/sdk/bedrockruntime/Cargo.toml

@@ -21,21 +81,81 @@
   41     41   
features = ["event-stream"]
   42     42   
version = "0.62.6"
   43     43   
   44     44   
[dependencies.aws-smithy-json]
   45     45   
path = "../aws-smithy-json"
   46     46   
version = "0.61.9"
   47     47   
   48     48   
[dependencies.aws-smithy-runtime]
   49     49   
path = "../aws-smithy-runtime"
   50     50   
features = ["client", "http-auth"]
   51         -
version = "1.9.5"
          51  +
version = "1.9.6"
   52     52   
   53     53   
[dependencies.aws-smithy-runtime-api]
   54     54   
path = "../aws-smithy-runtime-api"
   55     55   
features = ["client", "http-02x", "http-auth"]
   56     56   
version = "1.9.3"
   57     57   
   58     58   
[dependencies.aws-smithy-types]
   59     59   
path = "../aws-smithy-types"
   60     60   
features = ["http-body-0-4-x"]
   61     61   
version = "1.3.5"
@@ -91,91 +151,151 @@
  111    111   
features = ["test-util", "wire-mock"]
  112    112   
version = "1.1.5"
  113    113   
  114    114   
[dev-dependencies.aws-smithy-protocol-test]
  115    115   
path = "../aws-smithy-protocol-test"
  116    116   
version = "0.63.7"
  117    117   
  118    118   
[dev-dependencies.aws-smithy-runtime]
  119    119   
path = "../aws-smithy-runtime"
  120    120   
features = ["test-util"]
  121         -
version = "1.9.5"
         121  +
version = "1.9.6"
  122    122   
  123    123   
[dev-dependencies.aws-smithy-runtime-api]
  124    124   
path = "../aws-smithy-runtime-api"
  125    125   
features = ["test-util"]
  126    126   
version = "1.9.3"
  127    127   
  128    128   
[dev-dependencies.aws-smithy-types]
  129    129   
path = "../aws-smithy-types"
  130    130   
features = ["test-util"]
  131    131   
version = "1.3.5"

tmp-codegen-diff/aws-sdk/sdk/cloudwatchlogs/Cargo.toml

@@ -17,17 +77,77 @@
   37     37   
features = ["event-stream"]
   38     38   
version = "0.62.6"
   39     39   
   40     40   
[dependencies.aws-smithy-json]
   41     41   
path = "../aws-smithy-json"
   42     42   
version = "0.61.9"
   43     43   
   44     44   
[dependencies.aws-smithy-runtime]
   45     45   
path = "../aws-smithy-runtime"
   46     46   
features = ["client"]
   47         -
version = "1.9.5"
          47  +
version = "1.9.6"
   48     48   
   49     49   
[dependencies.aws-smithy-runtime-api]
   50     50   
path = "../aws-smithy-runtime-api"
   51     51   
features = ["client", "http-02x"]
   52     52   
version = "1.9.3"
   53     53   
   54     54   
[dependencies.aws-smithy-types]
   55     55   
path = "../aws-smithy-types"
   56     56   
version = "1.3.5"
   57     57   
@@ -82,82 +142,142 @@
  102    102   
features = ["test-util", "wire-mock"]
  103    103   
version = "1.1.5"
  104    104   
  105    105   
[dev-dependencies.aws-smithy-protocol-test]
  106    106   
path = "../aws-smithy-protocol-test"
  107    107   
version = "0.63.7"
  108    108   
  109    109   
[dev-dependencies.aws-smithy-runtime]
  110    110   
path = "../aws-smithy-runtime"
  111    111   
features = ["test-util"]
  112         -
version = "1.9.5"
         112  +
version = "1.9.6"
  113    113   
  114    114   
[dev-dependencies.aws-smithy-runtime-api]
  115    115   
path = "../aws-smithy-runtime-api"
  116    116   
features = ["test-util"]
  117    117   
version = "1.9.3"
  118    118   
  119    119   
[dev-dependencies.aws-smithy-types]
  120    120   
path = "../aws-smithy-types"
  121    121   
features = ["test-util"]
  122    122   
version = "1.3.5"

tmp-codegen-diff/aws-sdk/sdk/codecatalyst/Cargo.toml

@@ -11,11 +131,131 @@
   31     31   
path = "../aws-smithy-http"
   32     32   
version = "0.62.6"
   33     33   
   34     34   
[dependencies.aws-smithy-json]
   35     35   
path = "../aws-smithy-json"
   36     36   
version = "0.61.9"
   37     37   
   38     38   
[dependencies.aws-smithy-runtime]
   39     39   
path = "../aws-smithy-runtime"
   40     40   
features = ["client", "http-auth"]
   41         -
version = "1.9.5"
          41  +
version = "1.9.6"
   42     42   
   43     43   
[dependencies.aws-smithy-runtime-api]
   44     44   
path = "../aws-smithy-runtime-api"
   45     45   
features = ["client", "http-02x", "http-auth"]
   46     46   
version = "1.9.3"
   47     47   
   48     48   
[dependencies.aws-smithy-types]
   49     49   
path = "../aws-smithy-types"
   50     50   
version = "1.3.5"
   51     51   
   52     52   
[dependencies.aws-types]
   53     53   
path = "../aws-types"
   54     54   
version = "1.3.11"
   55     55   
   56     56   
[dependencies.bytes]
   57     57   
version = "1.4.0"
   58     58   
   59     59   
[dependencies.fastrand]
   60     60   
version = "2.0.0"
   61     61   
   62     62   
[dependencies.http]
   63     63   
version = "0.2.9"
   64     64   
   65     65   
[dependencies.regex-lite]
   66     66   
version = "0.1.5"
   67     67   
   68     68   
[dependencies.tracing]
   69     69   
version = "0.1"
   70     70   
[dev-dependencies.aws-config]
   71     71   
path = "../aws-config"
   72     72   
version = "1.8.12"
   73     73   
   74     74   
[dev-dependencies.aws-credential-types]
   75     75   
path = "../aws-credential-types"
   76     76   
features = ["test-util"]
   77     77   
version = "1.2.11"
   78     78   
   79     79   
[dev-dependencies.aws-runtime]
   80     80   
path = "../aws-runtime"
   81     81   
features = ["test-util"]
   82     82   
version = "1.5.17"
   83     83   
   84     84   
[dev-dependencies.aws-smithy-async]
   85     85   
path = "../aws-smithy-async"
   86     86   
features = ["test-util"]
   87     87   
version = "1.2.7"
   88     88   
   89     89   
[dev-dependencies.aws-smithy-http-client]
   90     90   
path = "../aws-smithy-http-client"
   91     91   
features = ["test-util", "wire-mock"]
   92     92   
version = "1.1.5"
   93     93   
   94     94   
[dev-dependencies.aws-smithy-protocol-test]
   95     95   
path = "../aws-smithy-protocol-test"
   96     96   
version = "0.63.7"
   97     97   
   98     98   
[dev-dependencies.aws-smithy-runtime]
   99     99   
path = "../aws-smithy-runtime"
  100    100   
features = ["test-util"]
  101         -
version = "1.9.5"
         101  +
version = "1.9.6"
  102    102   
  103    103   
[dev-dependencies.aws-smithy-runtime-api]
  104    104   
path = "../aws-smithy-runtime-api"
  105    105   
features = ["test-util"]
  106    106   
version = "1.9.3"
  107    107   
  108    108   
[dev-dependencies.aws-smithy-types]
  109    109   
path = "../aws-smithy-types"
  110    110   
features = ["test-util"]
  111    111   
version = "1.3.5"

tmp-codegen-diff/aws-sdk/sdk/config/Cargo.toml

@@ -11,11 +71,71 @@
   31     31   
path = "../aws-smithy-http"
   32     32   
version = "0.62.6"
   33     33   
   34     34   
[dependencies.aws-smithy-json]
   35     35   
path = "../aws-smithy-json"
   36     36   
version = "0.61.9"
   37     37   
   38     38   
[dependencies.aws-smithy-runtime]
   39     39   
path = "../aws-smithy-runtime"
   40     40   
features = ["client"]
   41         -
version = "1.9.5"
          41  +
version = "1.9.6"
   42     42   
   43     43   
[dependencies.aws-smithy-runtime-api]
   44     44   
path = "../aws-smithy-runtime-api"
   45     45   
features = ["client", "http-02x"]
   46     46   
version = "1.9.3"
   47     47   
   48     48   
[dependencies.aws-smithy-types]
   49     49   
path = "../aws-smithy-types"
   50     50   
version = "1.3.5"
   51     51   

tmp-codegen-diff/aws-sdk/sdk/dynamodb/Cargo.toml

@@ -11,11 +71,71 @@
   31     31   
path = "../aws-smithy-http"
   32     32   
version = "0.62.6"
   33     33   
   34     34   
[dependencies.aws-smithy-json]
   35     35   
path = "../aws-smithy-json"
   36     36   
version = "0.61.9"
   37     37   
   38     38   
[dependencies.aws-smithy-runtime]
   39     39   
path = "../aws-smithy-runtime"
   40     40   
features = ["client"]
   41         -
version = "1.9.5"
          41  +
version = "1.9.6"
   42     42   
   43     43   
[dependencies.aws-smithy-runtime-api]
   44     44   
path = "../aws-smithy-runtime-api"
   45     45   
features = ["client", "http-02x"]
   46     46   
version = "1.9.3"
   47     47   
   48     48   
[dependencies.aws-smithy-types]
   49     49   
path = "../aws-smithy-types"
   50     50   
version = "1.3.5"
   51     51   
@@ -74,74 +134,134 @@
   94     94   
features = ["test-util", "wire-mock"]
   95     95   
version = "1.1.5"
   96     96   
   97     97   
[dev-dependencies.aws-smithy-protocol-test]
   98     98   
path = "../aws-smithy-protocol-test"
   99     99   
version = "0.63.7"
  100    100   
  101    101   
[dev-dependencies.aws-smithy-runtime]
  102    102   
path = "../aws-smithy-runtime"
  103    103   
features = ["test-util"]
  104         -
version = "1.9.5"
         104  +
version = "1.9.6"
  105    105   
  106    106   
[dev-dependencies.aws-smithy-runtime-api]
  107    107   
path = "../aws-smithy-runtime-api"
  108    108   
features = ["test-util"]
  109    109   
version = "1.9.3"
  110    110   
  111    111   
[dev-dependencies.aws-smithy-types]
  112    112   
path = "../aws-smithy-types"
  113    113   
features = ["test-util"]
  114    114   
version = "1.3.5"

tmp-codegen-diff/aws-sdk/sdk/ec2/Cargo.toml

@@ -15,15 +136,136 @@
   35     35   
path = "../aws-smithy-json"
   36     36   
version = "0.61.9"
   37     37   
   38     38   
[dependencies.aws-smithy-query]
   39     39   
path = "../aws-smithy-query"
   40     40   
version = "0.60.9"
   41     41   
   42     42   
[dependencies.aws-smithy-runtime]
   43     43   
path = "../aws-smithy-runtime"
   44     44   
features = ["client"]
   45         -
version = "1.9.5"
          45  +
version = "1.9.6"
   46     46   
   47     47   
[dependencies.aws-smithy-runtime-api]
   48     48   
path = "../aws-smithy-runtime-api"
   49     49   
features = ["client", "http-02x"]
   50     50   
version = "1.9.3"
   51     51   
   52     52   
[dependencies.aws-smithy-types]
   53     53   
path = "../aws-smithy-types"
   54     54   
version = "1.3.5"
   55     55   
   56     56   
[dependencies.aws-smithy-xml]
   57     57   
path = "../aws-smithy-xml"
   58     58   
version = "0.60.13"
   59     59   
   60     60   
[dependencies.aws-types]
   61     61   
path = "../aws-types"
   62     62   
version = "1.3.11"
   63     63   
   64     64   
[dependencies.fastrand]
   65     65   
version = "2.0.0"
   66     66   
   67     67   
[dependencies.http]
   68     68   
version = "0.2.9"
   69     69   
   70     70   
[dependencies.regex-lite]
   71     71   
version = "0.1.5"
   72     72   
   73     73   
[dependencies.tracing]
   74     74   
version = "0.1"
   75     75   
[dev-dependencies.aws-config]
   76     76   
path = "../aws-config"
   77     77   
version = "1.8.12"
   78     78   
   79     79   
[dev-dependencies.aws-credential-types]
   80     80   
path = "../aws-credential-types"
   81     81   
features = ["test-util"]
   82     82   
version = "1.2.11"
   83     83   
   84     84   
[dev-dependencies.aws-runtime]
   85     85   
path = "../aws-runtime"
   86     86   
features = ["test-util"]
   87     87   
version = "1.5.17"
   88     88   
   89     89   
[dev-dependencies.aws-smithy-async]
   90     90   
path = "../aws-smithy-async"
   91     91   
features = ["test-util"]
   92     92   
version = "1.2.7"
   93     93   
   94     94   
[dev-dependencies.aws-smithy-http-client]
   95     95   
path = "../aws-smithy-http-client"
   96     96   
features = ["test-util", "wire-mock"]
   97     97   
version = "1.1.5"
   98     98   
   99     99   
[dev-dependencies.aws-smithy-protocol-test]
  100    100   
path = "../aws-smithy-protocol-test"
  101    101   
version = "0.63.7"
  102    102   
  103    103   
[dev-dependencies.aws-smithy-runtime]
  104    104   
path = "../aws-smithy-runtime"
  105    105   
features = ["test-util"]
  106         -
version = "1.9.5"
         106  +
version = "1.9.6"
  107    107   
  108    108   
[dev-dependencies.aws-smithy-runtime-api]
  109    109   
path = "../aws-smithy-runtime-api"
  110    110   
features = ["test-util"]
  111    111   
version = "1.9.3"
  112    112   
  113    113   
[dev-dependencies.aws-smithy-types]
  114    114   
path = "../aws-smithy-types"
  115    115   
features = ["test-util"]
  116    116   
version = "1.3.5"

tmp-codegen-diff/aws-sdk/sdk/ecs/Cargo.toml

@@ -11,11 +71,71 @@
   31     31   
path = "../aws-smithy-http"
   32     32   
version = "0.62.6"
   33     33   
   34     34   
[dependencies.aws-smithy-json]
   35     35   
path = "../aws-smithy-json"
   36     36   
version = "0.61.9"
   37     37   
   38     38   
[dependencies.aws-smithy-runtime]
   39     39   
path = "../aws-smithy-runtime"
   40     40   
features = ["client"]
   41         -
version = "1.9.5"
          41  +
version = "1.9.6"
   42     42   
   43     43   
[dependencies.aws-smithy-runtime-api]
   44     44   
path = "../aws-smithy-runtime-api"
   45     45   
features = ["client", "http-02x"]
   46     46   
version = "1.9.3"
   47     47   
   48     48   
[dependencies.aws-smithy-types]
   49     49   
path = "../aws-smithy-types"
   50     50   
version = "1.3.5"
   51     51   

tmp-codegen-diff/aws-sdk/sdk/glacier/Cargo.toml

@@ -15,15 +75,75 @@
   35     35   
path = "../aws-smithy-http"
   36     36   
version = "0.62.6"
   37     37   
   38     38   
[dependencies.aws-smithy-json]
   39     39   
path = "../aws-smithy-json"
   40     40   
version = "0.61.9"
   41     41   
   42     42   
[dependencies.aws-smithy-runtime]
   43     43   
path = "../aws-smithy-runtime"
   44     44   
features = ["client"]
   45         -
version = "1.9.5"
          45  +
version = "1.9.6"
   46     46   
   47     47   
[dependencies.aws-smithy-runtime-api]
   48     48   
path = "../aws-smithy-runtime-api"
   49     49   
features = ["client", "http-02x"]
   50     50   
version = "1.9.3"
   51     51   
   52     52   
[dependencies.aws-smithy-types]
   53     53   
path = "../aws-smithy-types"
   54     54   
version = "1.3.5"
   55     55   
@@ -85,85 +145,145 @@
  105    105   
features = ["test-util", "wire-mock"]
  106    106   
version = "1.1.5"
  107    107   
  108    108   
[dev-dependencies.aws-smithy-protocol-test]
  109    109   
path = "../aws-smithy-protocol-test"
  110    110   
version = "0.63.7"
  111    111   
  112    112   
[dev-dependencies.aws-smithy-runtime]
  113    113   
path = "../aws-smithy-runtime"
  114    114   
features = ["test-util"]
  115         -
version = "1.9.5"
         115  +
version = "1.9.6"
  116    116   
  117    117   
[dev-dependencies.aws-smithy-runtime-api]
  118    118   
path = "../aws-smithy-runtime-api"
  119    119   
features = ["test-util"]
  120    120   
version = "1.9.3"
  121    121   
  122    122   
[dev-dependencies.aws-smithy-types]
  123    123   
path = "../aws-smithy-types"
  124    124   
features = ["test-util"]
  125    125   
version = "1.3.5"

tmp-codegen-diff/aws-sdk/sdk/iam/Cargo.toml

@@ -15,15 +136,136 @@
   35     35   
path = "../aws-smithy-json"
   36     36   
version = "0.61.9"
   37     37   
   38     38   
[dependencies.aws-smithy-query]
   39     39   
path = "../aws-smithy-query"
   40     40   
version = "0.60.9"
   41     41   
   42     42   
[dependencies.aws-smithy-runtime]
   43     43   
path = "../aws-smithy-runtime"
   44     44   
features = ["client"]
   45         -
version = "1.9.5"
          45  +
version = "1.9.6"
   46     46   
   47     47   
[dependencies.aws-smithy-runtime-api]
   48     48   
path = "../aws-smithy-runtime-api"
   49     49   
features = ["client", "http-02x"]
   50     50   
version = "1.9.3"
   51     51   
   52     52   
[dependencies.aws-smithy-types]
   53     53   
path = "../aws-smithy-types"
   54     54   
version = "1.3.5"
   55     55   
   56     56   
[dependencies.aws-smithy-xml]
   57     57   
path = "../aws-smithy-xml"
   58     58   
version = "0.60.13"
   59     59   
   60     60   
[dependencies.aws-types]
   61     61   
path = "../aws-types"
   62     62   
version = "1.3.11"
   63     63   
   64     64   
[dependencies.fastrand]
   65     65   
version = "2.0.0"
   66     66   
   67     67   
[dependencies.http]
   68     68   
version = "0.2.9"
   69     69   
   70     70   
[dependencies.regex-lite]
   71     71   
version = "0.1.5"
   72     72   
   73     73   
[dependencies.tracing]
   74     74   
version = "0.1"
   75     75   
[dev-dependencies.aws-config]
   76     76   
path = "../aws-config"
   77     77   
version = "1.8.12"
   78     78   
   79     79   
[dev-dependencies.aws-credential-types]
   80     80   
path = "../aws-credential-types"
   81     81   
features = ["test-util"]
   82     82   
version = "1.2.11"
   83     83   
   84     84   
[dev-dependencies.aws-runtime]
   85     85   
path = "../aws-runtime"
   86     86   
features = ["test-util"]
   87     87   
version = "1.5.17"
   88     88   
   89     89   
[dev-dependencies.aws-smithy-async]
   90     90   
path = "../aws-smithy-async"
   91     91   
features = ["test-util"]
   92     92   
version = "1.2.7"
   93     93   
   94     94   
[dev-dependencies.aws-smithy-http-client]
   95     95   
path = "../aws-smithy-http-client"
   96     96   
features = ["test-util", "wire-mock"]
   97     97   
version = "1.1.5"
   98     98   
   99     99   
[dev-dependencies.aws-smithy-protocol-test]
  100    100   
path = "../aws-smithy-protocol-test"
  101    101   
version = "0.63.7"
  102    102   
  103    103   
[dev-dependencies.aws-smithy-runtime]
  104    104   
path = "../aws-smithy-runtime"
  105    105   
features = ["test-util"]
  106         -
version = "1.9.5"
         106  +
version = "1.9.6"
  107    107   
  108    108   
[dev-dependencies.aws-smithy-runtime-api]
  109    109   
path = "../aws-smithy-runtime-api"
  110    110   
features = ["test-util"]
  111    111   
version = "1.9.3"
  112    112   
  113    113   
[dev-dependencies.aws-smithy-types]
  114    114   
path = "../aws-smithy-types"
  115    115   
features = ["test-util"]
  116    116   
version = "1.3.5"