Skip to content

Commit 4f649a3

Browse files
committed
Fix product dependency for RxRelay
1 parent 010ef6f commit 4f649a3

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

Package.swift

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.1
1+
// swift-tools-version:5.2
22

33
import PackageDescription
44

@@ -10,16 +10,21 @@ let package = Package(
1010
products: [
1111
.library(
1212
name: "RxCombine",
13-
targets: ["RxCombine"]),
13+
targets: ["RxCombine"]
14+
),
1415
],
1516
dependencies: [
1617
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "6.0.0")
1718
],
1819
targets: [
1920
.target(
2021
name: "RxCombine",
21-
dependencies: ["RxSwift", "RxRelay"],
22-
path: "Sources"),
22+
dependencies: [
23+
"RxSwift",
24+
.product(name: "RxRelay", package: "RxSwift"),
25+
],
26+
path: "Sources"
27+
),
2328
.testTarget(
2429
name: "RxCombineTests",
2530
dependencies: ["RxCombine"],

0 commit comments

Comments
 (0)