We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 010ef6f commit 4f649a3Copy full SHA for 4f649a3
Package.swift
@@ -1,4 +1,4 @@
1
-// swift-tools-version:5.1
+// swift-tools-version:5.2
2
3
import PackageDescription
4
@@ -10,16 +10,21 @@ let package = Package(
10
products: [
11
.library(
12
name: "RxCombine",
13
- targets: ["RxCombine"]),
+ targets: ["RxCombine"]
14
+ ),
15
],
16
dependencies: [
17
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "6.0.0")
18
19
targets: [
20
.target(
21
- dependencies: ["RxSwift", "RxRelay"],
22
- path: "Sources"),
+ dependencies: [
23
+ "RxSwift",
24
+ .product(name: "RxRelay", package: "RxSwift"),
25
+ ],
26
+ path: "Sources"
27
28
.testTarget(
29
name: "RxCombineTests",
30
dependencies: ["RxCombine"],
0 commit comments