File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change 1
- // swift-tools-version:3.1
1
+ // swift-tools-version:4.0
2
2
3
3
import PackageDescription
4
4
5
5
let package = Package (
6
6
name: " RxDataSources " ,
7
- targets : [
8
- Target ( name: " RxDataSources " , dependencies : [ . Target ( name : " Differentiator " ) ] ) ,
9
- Target ( name: " Differentiator " ) ,
7
+ products : [
8
+ . library ( name: " RxDataSources " , targets : [ " RxDataSources " ] ) ,
9
+ . library ( name: " Differentiator " , targets : [ " Differentiator " ] ) ,
10
10
] ,
11
11
dependencies: [
12
- . Package( url: " https://github.com/ReactiveX/RxSwift.git " , majorVersion: 3 ) ,
12
+ . package ( url: " https://github.com/ReactiveX/RxSwift.git " , . branch( " rxswift4.0-swift4.0 " ) ) ,
13
+ ] ,
14
+ targets: [
15
+ . target( name: " RxDataSources " , dependencies: [ " Differentiator " ] ) ,
16
+ . target( name: " Differentiator " ) ,
17
+ . testTarget( name: " RxDataSourcesTests " , dependencies: [ " RxDataSources " ] ) ,
13
18
]
14
19
)
You can’t perform that action at this time.
0 commit comments