Skip to content

Commit

Permalink
Fix broken spm dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisMyrants committed Mar 29, 2021
1 parent 457f2c4 commit 836d91d
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 13 deletions.
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

49 changes: 38 additions & 11 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,44 @@
"repositoryURL": "https://github.com/typelift/Abstract.git",
"state": {
"branch": null,
"revision": "68fcd8e6b827d1c8948c43760cebb02a4fbee866",
"version": "0.0.2"
"revision": "77f2902ff68f218daa8040251c148c328be82845",
"version": "0.1.0"
}
},
{
"package": "Chalk",
"repositoryURL": "https://github.com/mxcl/Chalk.git",
"state": {
"branch": null,
"revision": "9aa9f348b86db3cf6702a3e43c081ecec80cf3c7",
"version": "0.4.0"
}
},
{
"package": "FileCheck",
"repositoryURL": "https://github.com/trill-lang/FileCheck.git",
"repositoryURL": "https://github.com/llvm-swift/FileCheck.git",
"state": {
"branch": null,
"revision": "1c966580c83cf2e41be802992d46fe2edfc5c95f",
"version": "0.0.5"
"revision": "0dc8a5bff1a7f01e1d7bcc20c79e2127b2ea3eeb",
"version": "0.2.5"
}
},
{
"package": "FunctionalKit",
"repositoryURL": "https://github.com/facile-it/FunctionalKit.git",
"state": {
"branch": null,
"revision": "c5190900e3114d358e076a8c2675a31ace9f819a",
"version": "0.4.0"
"revision": "e465a4727fd664bfb2191c719567dee8eb57effe",
"version": "0.23.0"
}
},
{
"package": "Log",
"repositoryURL": "https://gitlab.facile.it/mobile-apps/Log",
"state": {
"branch": null,
"revision": "7acd50e41fb9189f19a8e1250eb6192b8eae3b31",
"version": "0.5.0"
}
},
{
Expand All @@ -42,17 +60,26 @@
"repositoryURL": "https://github.com/ReactiveX/RxSwift.git",
"state": {
"branch": null,
"revision": "e479d0029db0575e03e3c092e1c9724b9410eab7",
"version": "4.1.1"
"revision": "254617dd7fae0c45319ba5fbea435bf4d0e15b5d",
"version": "5.1.2"
}
},
{
"package": "swift-argument-parser",
"repositoryURL": "https://github.com/apple/swift-argument-parser",
"state": {
"branch": null,
"revision": "831ed5e860a70e745bc1337830af4786b2576881",
"version": "0.4.1"
}
},
{
"package": "SwiftCheck",
"repositoryURL": "https://github.com/typelift/SwiftCheck.git",
"state": {
"branch": null,
"revision": "df82fb889864945c64458f38846702af729b3ee4",
"version": "0.9.1"
"revision": "077c096c3ddfc38db223ac8e525ad16ffb987138",
"version": "0.12.0"
}
}
]
Expand Down
8 changes: 6 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ let package = Package(
dependencies: [
// Dependencies declare other packages that this package depends on.
// .package(url: /* package url */, from: "1.0.0"),
.package(url: "https://github.com/facile-it/FunctionalKit.git", from: Version(0,0,0)),
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "4.0.0")
.package(url: "https://github.com/facile-it/FunctionalKit.git", from: Version(0,23,0)),
.package(url: "https://github.com/typelift/Abstract.git", from: Version(0,1,0)),
.package(url: "https://gitlab.facile.it/mobile-apps/Log", from: Version(0,5,0)),
.package(url: "https://github.com/ReactiveX/RxSwift.git", from: "5.0.0")
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
Expand All @@ -24,6 +26,8 @@ let package = Package(
name: "NavigationHelper",
dependencies: [
"FunctionalKit",
"Abstract",
"Log",
"RxSwift"
]),
.testTarget(
Expand Down
1 change: 1 addition & 0 deletions Sources/NavigationHelper/SerialHandler.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import FunctionalKit
import RxSwift
import Foundation

public final class SerialHandler<Message>: CustomStringConvertible where Message: Hashable & Executable {
private let messageSubject = PublishSubject<Message>()
Expand Down

0 comments on commit 836d91d

Please sign in to comment.