-
Notifications
You must be signed in to change notification settings - Fork 5
/
Package.swift
53 lines (51 loc) · 2.03 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// 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: "RxComposableArchitecture",
platforms: [
.iOS(.v13),
.macOS(.v10_15),
],
products: [
.library(
name: "RxComposableArchitecture",
targets: ["RxComposableArchitecture"]
),
],
dependencies: [
.package(url: "https://github.com/ReactiveX/RxSwift", from: "5.1.1"),
.package(url: "https://github.com/pointfreeco/swift-case-paths", from: "0.8.1"),
.package(name: "Benchmark", url: "https://github.com/google/swift-benchmark", from: "0.1.0"),
.package(url: "https://github.com/pointfreeco/xctest-dynamic-overlay", from: "0.8.5"),
.package(url: "https://github.com/pointfreeco/swift-custom-dump", from: "0.9.1"),
.package(url: "https://github.com/pointfreeco/swift-dependencies", from: "0.2.0")
],
targets: [
.target(
name: "RxComposableArchitecture",
dependencies: [
.product(name: "CasePaths", package: "swift-case-paths"),
.product(name: "RxSwift", package: "RxSwift"),
.product(name: "RxRelay", package: "RxSwift"),
.product(name: "XCTestDynamicOverlay", package: "xctest-dynamic-overlay"),
.product(name: "CustomDump", package: "swift-custom-dump"),
.product(name: "Dependencies", package: "swift-dependencies"),
]
),
.testTarget(
name: "RxComposableArchitectureTests",
dependencies: [
"RxComposableArchitecture",
.product(name: "CustomDump", package: "swift-custom-dump"),
]
),
.executableTarget(
name: "RxComposableArchitecture-Benchmark",
dependencies: [
"RxComposableArchitecture",
.product(name: "Benchmark", package: "Benchmark"),
]
),
]
)