Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Commit

Permalink
fix: updated dependencies references
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeplotean committed Oct 12, 2023
1 parent 20f4260 commit b07029f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 12 deletions.
6 changes: 2 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,8 @@ dependencies {
implementation("de.mkammerer:argon2-jvm:2.11")


// SSI Kit 2
implementation("id.walt.did:waltid-did:1.0.0")
// implementation("id.walt:waltid-ssikit2:1.0.4-SNAPSHOT")
// implementation id.walt:core-crypto -> provided by id.walt:waltid-ssikit2
// waltid-did
implementation("id.walt.did:waltid-did:1.0.0")//id.walt.crypto provided by id.walt.did:waltid-did

// OIDC
implementation("id.walt:waltid-openid4vc:1.2310051536.0")
Expand Down
8 changes: 4 additions & 4 deletions src/main/kotlin/id/walt/service/SSIKit2WalletService.kt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package id.walt.service

import id.walt.core.crypto.keys.Key
import id.walt.core.crypto.keys.KeySerialization
import id.walt.core.crypto.keys.KeyType
import id.walt.core.crypto.keys.LocalKey
import id.walt.crypto.keys.Key
import id.walt.crypto.keys.KeySerialization
import id.walt.crypto.keys.KeyType
import id.walt.crypto.keys.LocalKey
import id.walt.db.models.*
import id.walt.did.dids.DidService
import id.walt.did.dids.registrar.dids.DidCheqdCreateOptions
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package id.walt.service.oidc4vc

import id.walt.core.crypto.keys.Key
import id.walt.core.crypto.utils.JsonUtils.toJsonElement
import id.walt.core.crypto.utils.JwsUtils.decodeJws
import id.walt.crypto.keys.Key
import id.walt.crypto.utils.JsonUtils.toJsonElement
import id.walt.crypto.utils.JwsUtils.decodeJws
import id.walt.did.dids.DidService
import id.walt.oid4vc.data.OpenIDProviderMetadata
import id.walt.oid4vc.data.dif.DescriptorMapping
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/id/walt/web/controllers/KeyController.kt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package id.walt.web.controllers

import id.walt.core.crypto.keys.KeyType
import id.walt.crypto.keys.KeyType
import id.walt.web.getWalletService
import io.github.smiley4.ktorswaggerui.dsl.delete
import io.github.smiley4.ktorswaggerui.dsl.get
Expand Down

0 comments on commit b07029f

Please sign in to comment.