Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4ca656b

Browse files
committedMar 9, 2020
Added RxOptional
1 parent 6fb983d commit 4ca656b

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed
 

‎Package.resolved

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,15 @@
118118
"version": "0.9.2"
119119
}
120120
},
121+
{
122+
"package": "RxOptional",
123+
"repositoryURL": "https://github.com/RxSwiftCommunity/RxOptional",
124+
"state": {
125+
"branch": null,
126+
"revision": "98a1895918e9ba9735a15207dd9c7120e9f51843",
127+
"version": "4.1.0"
128+
}
129+
},
121130
{
122131
"package": "RxSwift",
123132
"repositoryURL": "https://github.com/ReactiveX/RxSwift.git",

‎Package.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ let package = Package(
3636
dependencies: [
3737
// Dependencies declare other packages that this package depends on.
3838
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "5.0.0")),
39+
.package(url: "https://github.com/RxSwiftCommunity/RxOptional", .upToNextMajor(from: "4.1.0")),
3940
.package(url: "https://github.com/apple/swift-nio.git", .upToNextMajor(from: "2.7.1")),
4041
// Development
4142
.package(url: "https://github.com/Quick/Nimble", .branch("master")), // dev
@@ -55,7 +56,7 @@ let package = Package(
5556
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
5657
.target(
5758
name: "Mini",
58-
dependencies: ["RxSwift", "NIOConcurrencyHelpers"]
59+
dependencies: ["RxSwift", "NIOConcurrencyHelpers", "RxOptional"]
5960
),
6061
.target(
6162
name: "LoggingService",
@@ -73,7 +74,7 @@ let package = Package(
7374
name: "MiniPromises",
7475
dependencies: ["Mini"]
7576
),
76-
.testTarget(name: "MiniSwiftTests", dependencies: ["Mini", "MiniTasks", "MiniPromises", "TestMiddleware", "NIOConcurrencyHelpers", "RxSwift", "Nimble", "RxTest", "RxBlocking"]), // dev
77+
.testTarget(name: "MiniSwiftTests", dependencies: ["Mini", "MiniTasks", "MiniPromises", "TestMiddleware", "NIOConcurrencyHelpers", "RxSwift", "Nimble", "RxTest", "RxBlocking", "RxOptional"]), // dev
7778
],
7879
swiftLanguageVersions: [.version("5")]
7980
)

0 commit comments

Comments
 (0)
Please sign in to comment.