From 56c10102ae040d1a4ca96c3870884572cf7aea23 Mon Sep 17 00:00:00 2001 From: Ian Botsford <83236726+ianbotsf@users.noreply.github.com> Date: Thu, 17 Aug 2023 15:54:54 +0000 Subject: [PATCH] explicitly add coroutines dependency --- aws-runtime/aws-config/build.gradle.kts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/aws-runtime/aws-config/build.gradle.kts b/aws-runtime/aws-config/build.gradle.kts index 4c59b53984d..a1828aa90f0 100644 --- a/aws-runtime/aws-config/build.gradle.kts +++ b/aws-runtime/aws-config/build.gradle.kts @@ -62,6 +62,9 @@ kotlin { // atomics implementation("org.jetbrains.kotlinx:atomicfu:$atomicFuVersion") + + // coroutines + implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion") } } commonTest {