Skip to content

Commit

Permalink
update Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
kazuki-horie-m committed Jul 15, 2022
1 parent 81c2a20 commit 9409f00
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,14 @@ Carthage/Build

# Swift Package Manager
.build
/.previous-build
*~
\#*
.\#*
.*.sw[nop]
*.xcscmblueprint
/default.profraw
Utilities/Docker/*.tar.gz
.swiftpm
Package.resolved
.swiftpm
*.pyc
12 changes: 9 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,17 @@ let package = Package(
.library(name: "RxController", targets: ["RxController"])
],
dependencies: [
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "5.0.0")),
.package(url: "https://github.com/RxSwiftCommunity/RxFlow.git", .upToNextMajor(from: "2.5.0"))
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "6.0.0")),
.package(url: "https://github.com/RxSwiftCommunity/RxFlow.git", .upToNextMajor(from: "2.12.0"))
],
targets: [
.target(name: "RxController", dependencies: ["RxSwift", "RxCocoa", "RxFlow"], path: "RxController")
.target(name: "RxController",
dependencies: [
"RxSwift",
.product(name: "RxCocoa", package: "RxSwift"),
"RxFlow"
]
)
],
swiftLanguageVersions: [.v5]
)

0 comments on commit 9409f00

Please sign in to comment.