forked from intuit/CardParts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
39 lines (37 loc) · 1.12 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
36
37
38
39
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "CardParts",
platforms: [
.iOS(.v10)
],
products: [
.library(name: "CardParts", targets: ["CardParts"]),
],
dependencies: [
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "5.0.0"),
.package(url: "https://github.com/RxSwiftCommunity/RxDataSources.git", from: "4.0.0"),
.package(url: "https://github.com/RxSwiftCommunity/RxGesture.git", from: "3.0.0")
],
targets: [
.target(
name: "CardParts",
dependencies: [
.byName(name: "RxSwift"),
.product(name: "RxCocoa", package: "RxSwift"),
.byName(name: "RxDataSources"),
.byName(name: "RxGesture")
],
path: "CardParts",
resources: [
.process("Assets/icons.xcassets")
]
),
.testTarget(
name: "CardPartsTests",
dependencies: ["CardParts"],
path: "Example/Tests",
exclude: ["Info.plist"]
)
]
)