-
Notifications
You must be signed in to change notification settings - Fork 1
/
Package.swift
31 lines (29 loc) · 982 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.4
import PackageDescription
let package = Package(
name: "SwiftUIViewKit",
platforms: [
.iOS(.v11),
],
products: [
.library(name: "SwiftUIViewKit", targets: ["SwiftUIViewKit"]),
],
dependencies: [
.package(url: "https://github.com/SnapKit/SnapKit.git", from: "5.6.0"),
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "6.5.0"),
],
targets: [
.target(name: "SwiftUIViewKit",
dependencies: [
.product(name: "SnapKit", package: "SnapKit"),
.product(name: "RxSwift", package: "RxSwift"),
.product(name: "RxRelay", package: "RxSwift"),
.product(name: "RxCocoa", package: "RxSwift"),
],
path: "Sources"),
.testTarget(name: "SwiftUIViewKitTests", dependencies: ["SwiftUIViewKit"]),
],
swiftLanguageVersions: [
.v5
]
)