Commit a321b7ed authored by AWS SDK Rust Bot's avatar AWS SDK Rust Bot
Browse files

[examples] Sync SDK examples from `awsdocs/aws-doc-sdk-examples`



Includes commit(s):
  f4d62c78cc9833e0761e6c8f2d30a69801b0c021
  299c9a6fdbbb541261a567d38dd527996f910d86
  1d52fa7c63b2fb7bb0a3adb4d51d8b21fc8390af
  5b0cb7a97ee764ef54fc93b66a658d7e2730a718
  b36c1c3b333bb2c03928e066774ada74c05ea165
  304651bf073daba16331cb7dcc4614953c314e62
  b4935440f4f1c031330173ea5fe45ed364fd9f2c
  3f0570319a5862411cb767a005363f78a187c0ab
  a8606e2ac77b2a2e871f06f0e13717755a22e938
  26f1a3d11de9c6488e9b1db175ffc92c370c5c27

Co-authored-by: default avatarDavid Souther <davidsouther+github@gmail.com>
Co-authored-by: default avatarford prior <108086978+ford-at-aws@users.noreply.github.com>
parent d814e4f3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
[workspace]
exclude = [
    "examples/cross_service",
    "examples/lambda",
    "examples/test-utils",
    "examples/examples",
    "examples/webassembly",
+1 −0
Original line number Diff line number Diff line
# Note: this workspace exists solely for the convenience of 
# compiling/auto-formatting/testing all the AWS Rust SDK examples together.
[workspace]
resolver = "2"
members = [
    "detect_faces",
    "detect_labels",
+2 −1
Original line number Diff line number Diff line
@@ -9,13 +9,14 @@ publish = false
aws-config= { version = "0.57.1", path = "../../../sdk/aws-config" }
aws-sdk-rekognition= { version = "0.35.0", path = "../../../sdk/rekognition" }
aws-sdk-s3= { version = "0.35.0", path = "../../../sdk/s3" }
aws-smithy-types= { version = "0.57.1", path = "../../../sdk/aws-smithy-types", features = ["rt-tokio"] }

[dependencies.tokio]
version = "1.20.1"
features = ["full"]

[dependencies.clap]
version = "~4.2"
version = "~4.4"
features = ["derive"]

[dependencies.tracing-subscriber]
+2 −1
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@ aws-config= { version = "0.57.1", path = "../../../sdk/aws-config" }
aws-sdk-dynamodb= { version = "0.35.0", path = "../../../sdk/dynamodb" }
aws-sdk-rekognition= { version = "0.35.0", path = "../../../sdk/rekognition" }
aws-sdk-s3= { version = "0.35.0", path = "../../../sdk/s3" }
aws-smithy-types= { version = "0.57.1", path = "../../../sdk/aws-smithy-types", features = ["rt-tokio"] }
aws-types= { version = "0.57.1", path = "../../../sdk/aws-types" }

[dependencies.tokio]
@@ -18,7 +19,7 @@ version = "1.20.1"
features = ["full"]

[dependencies.clap]
version = "~4.2"
version = "~4.4"
features = ["derive"]

[dependencies.tracing-subscriber]
+6 −2
Original line number Diff line number Diff line
@@ -35,15 +35,19 @@ aws-sdk-dynamodb= { version = "0.35.0", path = "../../../sdk/dynamodb" }
aws-sdk-rekognition= { version = "0.35.0", path = "../../../sdk/rekognition" }
aws-sdk-s3= { version = "0.35.0", path = "../../../sdk/s3" }
aws-sdk-sns= { version = "0.35.0", path = "../../../sdk/sns" }
aws-smithy-client= { version = "0.57.1", path = "../../../sdk/aws-smithy-client", features = ["test-util"] }
aws-smithy-http= { version = "0.57.1", path = "../../../sdk/aws-smithy-http" }
aws-smithy-runtime= { version = "0.57.1", path = "../../../sdk/aws-smithy-runtime" }
aws-smithy-types-convert= { version = "0.57.1", path = "../../../sdk/aws-smithy-types-convert", features = ["convert-chrono"] }

[dependencies.aws_lambda_events]
version = "0.10.0"
version = "0.11.1"
features = ["s3", "apigw"]
default-features = false

[dependencies.sdk-examples-test-utils]
path = "../../test-utils"
version = "0.1.0"

[dependencies.serde]
version = "1.0.159"
features = ["derive"]
Loading