From 91f9571a09fc43bae01034226fb4670afd571750 Mon Sep 17 00:00:00 2001 From: David Souther Date: Wed, 14 Jun 2023 14:28:29 -0700 Subject: [PATCH] Move integration test into dedicated workspace --- .../integration/Cargo.toml | 16 ++++++++++++++++ .../{ => integration}/tests/update_label.rs | 0 2 files changed, 16 insertions(+) create mode 100644 rust_dev_preview/cross_service/photo_asset_management/integration/Cargo.toml rename rust_dev_preview/cross_service/photo_asset_management/{ => integration}/tests/update_label.rs (100%) diff --git a/rust_dev_preview/cross_service/photo_asset_management/integration/Cargo.toml b/rust_dev_preview/cross_service/photo_asset_management/integration/Cargo.toml new file mode 100644 index 00000000000..1517255f554 --- /dev/null +++ b/rust_dev_preview/cross_service/photo_asset_management/integration/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "photo_asset_management_integration" +version = "0.1.0" +edition = "2021" + +[workspace] + + +[dependencies] +aws-config = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "main" } +aws-sdk-dynamodb = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "main" } +aws-sdk-rekognition = { git = "https://github.com/awslabs/aws-sdk-rust", branch = "main" } +photo_asset_management = { path = "../"} +tokio = { version = "1.27.0", features = ["macros"] } +tracing = "0.1.37" +tracing-subscriber = { version = "0.3.16", features = ["env-filter"] } diff --git a/rust_dev_preview/cross_service/photo_asset_management/tests/update_label.rs b/rust_dev_preview/cross_service/photo_asset_management/integration/tests/update_label.rs similarity index 100% rename from rust_dev_preview/cross_service/photo_asset_management/tests/update_label.rs rename to rust_dev_preview/cross_service/photo_asset_management/integration/tests/update_label.rs