-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
35 lines (32 loc) · 1.02 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
32
33
34
35
// swift-tools-version:5.2
/*
* (c) Miva Inc <https://www.miva.com/>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
import PackageDescription
let package = Package(
name: "MerchantAPI",
platforms: [ .macOS(.v10_13) ],
products: [
.library(
name: "MerchantAPI",
targets: ["MerchantAPI"]),
],
dependencies: [
.package(name: "CryptorRSA", url: "https://github.com/IBM-Swift/BlueRSA.git", .upToNextMajor(from: "1.0.201")),
.package(name: "Cryptor", url: "https://github.com/IBM-Swift/BlueCryptor.git", .upToNextMajor(from: "1.0.200")),
.package(name: "Socket", url: "https://github.com/IBM-Swift/BlueSocket.git", .upToNextMajor(from: "1.0.200"))
],
targets: [
.target(
name: "MerchantAPI",
dependencies: [
"CryptorRSA",
"Socket",
"Cryptor"
],
path: "MerchantAPI")
]
)