forked from EWC-consortium/eudi-wallet-oid4vc-ios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
31 lines (31 loc) · 1.33 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// swift-tools-version: 5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "eudiWalletOidcIos",
platforms: [
.iOS(.v13)
],
products: [
.library(
name: "eudiWalletOidcIos",
targets: ["eudiWalletOidcIos"]),
],
dependencies: [
.package(url: "https://github.com/keefertaylor/Base58Swift.git", branch: "master"),
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "1.8.1"),
.package(url: "https://github.com/decentralised-dataexchange/PresentationExchangeSdkiOS.git", .upToNextMajor(from: "2024.11.1")),
.package(url: "https://github.com/airsidemobile/JOSESwift.git", from: "2.3.0"),
.package(url: "https://github.com/apple/swift-crypto.git", from:"3.5.2"),
.package(url: "https://github.com/niscy-eudiw/SwiftCBOR.git", from: "0.5.7")
],
targets: [
.target(
name: "eudiWalletOidcIos",
dependencies: ["Base58Swift", "CryptoSwift", "PresentationExchangeSdkiOS", "JOSESwift", "SwiftCBOR", .product(name: "Crypto", package: "swift-crypto")],
path: "Sources"),
.testTarget(
name: "eudi-wallet-oidc-iosTests",
dependencies: ["eudiWalletOidcIos"]),
]
)