forked from BlockchainCommons/URKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
36 lines (34 loc) · 882 Bytes
/
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
32
33
34
35
36
// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "URKit",
platforms: [
.macOS(.v11),
.iOS(.v13),
.macCatalyst(.v13)
],
products: [
.library(
name: "URKit",
targets: ["URKit"]),
],
dependencies: [
.package(url: "https://github.com/KeystoneHQ/BCSwiftDCBOR.git", from: "0.11.1"),
.package(url: "https://github.com/KeystoneHQ/BCSwiftCrypto.git", from: "0.9.0")
],
targets: [
.target(
name: "URKit",
dependencies: [
.product(name: "DCBOR", package: "BCSwiftDCBOR"),
.product(name: "BCCrypto", package: "BCSwiftCrypto"),
]
),
.testTarget(
name: "URKitTests",
dependencies: [
"URKit",
]
),
]
)