Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update aries wrapper version to 0.2.0 #25

Merged
merged 2 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ariesframework/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ ktlint {
}

dependencies {
implementation("org.hyperledger:anoncreds_uniffi:0.1.1-wrapper.1")
implementation("org.hyperledger:indy_vdr_uniffi:0.1.1-wrapper.1")
implementation("org.hyperledger:askar_uniffi:0.1.1-wrapper.1")
implementation("org.hyperledger:anoncreds_uniffi:0.2.0-wrapper.1")
implementation("org.hyperledger:indy_vdr_uniffi:0.2.0-wrapper.1")
implementation("org.hyperledger:askar_uniffi:0.2.0-wrapper.1")

implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.0"
implementation 'org.slf4j:slf4j-api:1.7.32'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import kotlinx.coroutines.test.runTest
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
import kotlinx.serialization.decodeFromString
import kotlinx.serialization.encodeToString
import kotlinx.serialization.json.Json
import kotlinx.serialization.json.JsonObject
Expand All @@ -12,7 +11,7 @@
import kotlinx.serialization.modules.polymorphic
import kotlinx.serialization.modules.subclass
import org.hyperledger.ariesframework.proofs.models.RequestedCredentials
import org.hyperledger.ariesframework.util.concurrentForEach

Check failure on line 14 in ariesframework/src/test/java/org/hyperledger/ariesframework/SerializationTest.kt

View workflow job for this annotation

GitHub Actions / ktlint Report

standard:no-unused-imports

Unused import
import org.hyperledger.ariesframework.util.concurrentMap
import org.junit.Assert.assertEquals
import org.junit.Assert.assertNotEquals
Expand Down
Loading