File tree Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -4,11 +4,14 @@ import PackageDescription
4
4
let package = Package (
5
5
name: " VaporTestTools " ,
6
6
products: [
7
- . library( name: " VaporTestTools " , targets: [ " VaporTestTools " ] ) ,
8
- ] ,
7
+ . library(
8
+ name: " VaporTestTools " ,
9
+ targets: [ " VaporTestTools " ]
10
+ ) ,
11
+ ] ,
9
12
dependencies: [
10
- . package ( url: " https://github.com/vapor/vapor.git " , . branch ( " nio " ) ) ,
11
- ] ,
13
+ . package ( url: " https://github.com/vapor/vapor.git " , from : " 3.0.0-rc.2 " )
14
+ ] ,
12
15
targets: [
13
16
. target(
14
17
name: " VaporTestTools " ,
@@ -22,9 +25,12 @@ let package = Package(
22
25
" Vapor "
23
26
]
24
27
) ,
25
- . target( name: " RunVaporTestTools " , dependencies: [
26
- " AppVaporTestTools "
27
- ] ) ,
28
+ . target(
29
+ name: " RunVaporTestTools " ,
30
+ dependencies: [
31
+ " AppVaporTestTools "
32
+ ]
33
+ ) ,
28
34
. testTarget( name: " VaporTestToolsTests " , dependencies: [ " AppVaporTestTools " , " VaporTestTools " ] )
29
35
]
30
36
)
You can’t perform that action at this time.
0 commit comments