-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathPackage.swift
More file actions
22 lines (20 loc) · 751 Bytes
/
Package.swift
File metadata and controls
22 lines (20 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "SectionReactor",
platforms: [
.iOS(.v8), .tvOS(.v9)
],
products: [
.library(name: "SectionReactor", targets: ["SectionReactor"]),
],
dependencies: [
.package(url: "https://github.com/ReactorKit/ReactorKit.git", .upToNextMajor(from: "2.0.0")),
.package(url: "https://github.com/RxSwiftCommunity/RxDataSources.git", .upToNextMajor(from: "4.0.0")),
.package(url: "https://github.com/devxoul/RxExpect.git", .upToNextMajor(from: "2.0.0")),
],
targets: [
.target(name: "SectionReactor", dependencies: ["ReactorKit", "RxDataSources"]),
.testTarget(name: "SectionReactorTests", dependencies: ["SectionReactor", "RxExpect"])
]
)