Skip to content

Commit e2a60da

Browse files
aws-sdk-rust-ciAaron TsuiAaron Tsuibeqqrry-awsjdisanti
committed
[examples] Sync SDK examples from awsdocs/aws-doc-sdk-examples
Includes commit(s): 4e8a67a3936088939e86bd86f73b35b04f387e03 510596aa5b66ea139ff44f06958a0e35a3782358 ce9471d0efa071b885fa118d31770ced9a098dd1 ba74dc4f6147b507a385955d4e7b998bda9121c7 9f8a524169197773328d451e8dffd1813e7f9422 d9df55da59a8236c019f2c29817040306e8c336d 91de2d2fdaadbe3fb39c1b7263b847aebb1ba113 134401bcb5e8197763672ac71ae7eb4e0d30cbc4 261e28e8f673a42e5b735a82d5e3251f9c411ca8 7324526dae426bab29227f51d8540bd7c1b24a99 a751f54917fb1bf4ad320b0751053e82470b22d0 Co-authored-by: Aaron Tsui <56534121+awsa2ron@users.noreply.github.com> Co-authored-by: Aaron Tsui <kaixu@amazon.com> Co-authored-by: Jason Q <81179619+beqqrry-aws@users.noreply.github.com> Co-authored-by: John DiSanti <jdisanti@amazon.com> Co-authored-by: Zelda Hessler <zhessler@amazon.com>
1 parent d5118da commit e2a60da

File tree

72 files changed

+288
-154
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+288
-154
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ members = [
2222
"examples/ecs",
2323
"examples/eks",
2424
"examples/globalaccelerator",
25+
"examples/greengrassv2",
2526
"examples/iam",
2627
"examples/iot",
2728
"examples/kinesis",

examples/apigateway/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ path = "../../sdk/aws-smithy-types-convert"
1717
version = "0.48.0"
1818

1919
[dependencies.tokio]
20-
version = "1"
20+
version = "1.20.1"
2121
features = ["full"]
2222

2323
[dependencies.structopt]
2424
version = "0.3"
2525
default-features = false
2626

2727
[dependencies.tracing-subscriber]
28-
version = "0.3.5"
28+
version = "0.3.15"
2929
features = ["env-filter"]

examples/apigatewaymanagement/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ path = "../../sdk/apigatewaymanagement"
1717
version = "0.18.0"
1818

1919
[dependencies.tokio]
20-
version = "1"
20+
version = "1.20.1"
2121
features = ["full"]
2222

2323
[dependencies.structopt]
2424
version = "0.3"
2525
default-features = false
2626

2727
[dependencies.tracing-subscriber]
28-
version = "0.3.5"
28+
version = "0.3.15"
2929
features = ["env-filter"]

examples/applicationautoscaling/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ path = "../../sdk/applicationautoscaling"
1313
version = "0.18.0"
1414

1515
[dependencies.tokio]
16-
version = "1"
16+
version = "1.20.1"
1717
features = ["full"]
1818

1919
[dependencies.structopt]
2020
version = "0.3"
2121
default-features = false
2222

2323
[dependencies.tracing-subscriber]
24-
version = "0.3.5"
24+
version = "0.3.15"
2525
features = ["env-filter"]

examples/autoscaling/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ path = "../../sdk/autoscaling"
1313
version = "0.18.0"
1414

1515
[dependencies.tokio]
16-
version = "1"
16+
version = "1.20.1"
1717
features = ["full"]
1818

1919
[dependencies.structopt]
2020
version = "0.3"
2121
default-features = false
2222

2323
[dependencies.tracing-subscriber]
24-
version = "0.3.5"
24+
version = "0.3.15"
2525
features = ["env-filter"]

examples/autoscalingplans/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ path = "../../sdk/aws-types"
1717
version = "0.48.0"
1818

1919
[dependencies.tokio]
20-
version = "1"
20+
version = "1.20.1"
2121
features = ["full"]
2222

2323
[dependencies.structopt]
2424
version = "0.3"
2525
default-features = false
2626

2727
[dependencies.tracing-subscriber]
28-
version = "0.3.5"
28+
version = "0.3.15"
2929
features = ["env-filter"]

examples/batch/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ path = "../../sdk/batch"
1313
version = "0.18.0"
1414

1515
[dependencies.tokio]
16-
version = "1"
16+
version = "1.20.1"
1717
features = ["full"]
1818

1919
[dependencies.structopt]
2020
version = "0.3"
2121
default-features = false
2222

2323
[dependencies.tracing-subscriber]
24-
version = "0.3.5"
24+
version = "0.3.15"
2525
features = ["env-filter"]

examples/ca-certs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description = "An example demonstrating setting a custom root certificate with r
77
publish = false
88

99
[dependencies]
10-
rustls = "0.20.2"
10+
rustls = "0.20.6"
1111

1212
[dependencies.aws-config]
1313
path = "../../sdk/aws-config"
@@ -23,7 +23,7 @@ path = "../../sdk/s3"
2323
version = "0.18.0"
2424

2525
[dependencies.tokio]
26-
version = "1"
26+
version = "1.20.1"
2727
features = ["full"]
2828

2929
[dependencies.hyper-rustls]

examples/cloudformation/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ path = "../../sdk/cloudformation"
1313
version = "0.18.0"
1414

1515
[dependencies.tokio]
16-
version = "1"
16+
version = "1.20.1"
1717
features = ["full"]
1818

1919
[dependencies.structopt]
2020
version = "0.3"
2121
default-features = false
2222

2323
[dependencies.tracing-subscriber]
24-
version = "0.3.5"
24+
version = "0.3.15"
2525
features = ["env-filter"]

examples/cloudwatch/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ path = "../../sdk/cloudwatch"
1313
version = "0.18.0"
1414

1515
[dependencies.tokio]
16-
version = "1"
16+
version = "1.20.1"
1717
features = ["full"]
1818

1919
[dependencies.structopt]
2020
version = "0.3"
2121
default-features = false
2222

2323
[dependencies.tracing-subscriber]
24-
version = "0.3.5"
24+
version = "0.3.15"
2525
features = ["env-filter"]

0 commit comments

Comments
 (0)