Skip to content

Commit efb7e86

Browse files
committed
rc2
1 parent 7b133ff commit efb7e86

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

Package.swift

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@ import PackageDescription
44
let package = Package(
55
name: "VaporTestTools",
66
products: [
7-
.library(name: "VaporTestTools", targets: ["VaporTestTools"]),
8-
],
7+
.library(
8+
name: "VaporTestTools",
9+
targets: ["VaporTestTools"]
10+
),
11+
],
912
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+
],
1215
targets: [
1316
.target(
1417
name: "VaporTestTools",
@@ -22,9 +25,12 @@ let package = Package(
2225
"Vapor"
2326
]
2427
),
25-
.target(name: "RunVaporTestTools", dependencies: [
26-
"AppVaporTestTools"
27-
]),
28+
.target(
29+
name: "RunVaporTestTools",
30+
dependencies: [
31+
"AppVaporTestTools"
32+
]
33+
),
2834
.testTarget(name: "VaporTestToolsTests", dependencies: ["AppVaporTestTools", "VaporTestTools"])
2935
]
3036
)

0 commit comments

Comments
 (0)