Skip to content

Commit

Permalink
Fix product dependency for RxRelay
Browse files Browse the repository at this point in the history
  • Loading branch information
via-guy committed Feb 27, 2024
1 parent 010ef6f commit 4f649a3
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.1
// swift-tools-version:5.2

import PackageDescription

Expand All @@ -10,16 +10,21 @@ let package = Package(
products: [
.library(
name: "RxCombine",
targets: ["RxCombine"]),
targets: ["RxCombine"]
),
],
dependencies: [
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "6.0.0")
],
targets: [
.target(
name: "RxCombine",
dependencies: ["RxSwift", "RxRelay"],
path: "Sources"),
dependencies: [
"RxSwift",
.product(name: "RxRelay", package: "RxSwift"),
],
path: "Sources"
),
.testTarget(
name: "RxCombineTests",
dependencies: ["RxCombine"],
Expand Down

0 comments on commit 4f649a3

Please sign in to comment.