-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPackage.swift
31 lines (29 loc) · 1007 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
// swift-tools-version:5.5
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "NGTools",
platforms: [.iOS(.v15)],
products: [
.library(
name: "NGTools",
targets: ["NGTools"])
],
dependencies: [
.package(name: "RxSwift", url: "https://github.com/ReactiveX/RxSwift", .upToNextMajor(from: "6.0.0")),
.package(name: "CryptoSwift", url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMajor(from: "1.6.0"))
],
targets: [
.target(
name: "NGTools",
dependencies: [
.product(name: "RxSwift", package: "RxSwift"),
.product(name: "CryptoSwift", package: "CryptoSwift")
],
exclude: ["Info.plist"]),
.testTarget(
name: "NGToolsTests",
dependencies: ["NGTools"],
exclude: ["Info.plist"])
]
)