Skip to content

Commit d3762f0

Browse files
authored
Include the package name of the test dependencies (#125)
1 parent 3985f68 commit d3762f0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.0
1+
// swift-tools-version:5.2
22

33
import PackageDescription
44

@@ -10,8 +10,8 @@ let package = Package(
1010
targets: ["JWTDecode"])
1111
],
1212
dependencies: [
13-
.package(url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "3.0.0")),
14-
.package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "9.0.0"))
13+
.package(name: "Quick", url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "3.0.0")),
14+
.package(name: "Nimble", url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "9.0.0"))
1515
],
1616
targets: [
1717
.target(

0 commit comments

Comments
 (0)