diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-09-28 01:29:24 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2023-09-28 01:29:24 +0530 |
commit | 41c86b67f3f1fe320e702b05887f22188a5b42fc (patch) | |
tree | fa1b5c3c93d4d9e293dadf226e69d7c47a90d5ff /crypto/pgpainless/build.gradle.kts | |
parent | 5f3aa611c94a0da933e7a94f6fa0cceba14899fa (diff) |
refactor: use `runSuspendCatching` from `kotlin-result`
Diffstat (limited to 'crypto/pgpainless/build.gradle.kts')
-rw-r--r-- | crypto/pgpainless/build.gradle.kts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/pgpainless/build.gradle.kts b/crypto/pgpainless/build.gradle.kts index 29f5bb1f..bfaff4f7 100644 --- a/crypto/pgpainless/build.gradle.kts +++ b/crypto/pgpainless/build.gradle.kts @@ -6,11 +6,11 @@ plugins { id("com.github.android-password-store.kotlin-jvm-library") } dependencies { api(projects.crypto.common) - implementation(projects.coroutineUtils) implementation(libs.androidx.annotation) implementation(libs.dagger.hilt.core) implementation(libs.kotlinx.coroutines.core) implementation(libs.thirdparty.kotlinResult) + implementation(libs.thirdparty.kotlinResult.coroutines) implementation(libs.thirdparty.pgpainless) testImplementation(libs.bundles.testDependencies) testImplementation(libs.kotlinx.coroutines.test) |