Skip to content

Commit

Permalink
Update Package.swift to V4
Browse files Browse the repository at this point in the history
  • Loading branch information
devxoul authored and kzaher committed Sep 25, 2017
1 parent 847b3ce commit 155d102
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
// swift-tools-version:3.1
// swift-tools-version:4.0

import PackageDescription

let package = Package(
name: "RxDataSources",
targets: [
Target(name: "RxDataSources", dependencies: [.Target(name: "Differentiator")]),
Target(name: "Differentiator"),
products: [
.library(name: "RxDataSources", targets: ["RxDataSources"]),
.library(name: "Differentiator", targets: ["Differentiator"]),
],
dependencies: [
.Package(url: "https://github.com/ReactiveX/RxSwift.git", majorVersion: 3),
.package(url: "https://github.com/ReactiveX/RxSwift.git", .branch("rxswift4.0-swift4.0")),
],
targets: [
.target(name: "RxDataSources", dependencies: ["Differentiator"]),
.target(name: "Differentiator"),
.testTarget(name: "RxDataSourcesTests", dependencies: ["RxDataSources"]),
]
)

0 comments on commit 155d102

Please sign in to comment.