Skip to content

Commit 355af56

Browse files
authored
Make test dependencies not resolve when installing with SPM [SDK-2598] (#108)
* Include the package name of the test dependencies * Bumo swift tools version
1 parent e926cea commit 355af56

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Package.swift

+3-3
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
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription
@@ -18,8 +18,8 @@ let package = Package(
1818
)
1919
],
2020
dependencies: [
21-
.package(url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "3.0.0")),
22-
.package(url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "9.0.0"))
21+
.package(name: "Quick", url: "https://github.com/Quick/Quick.git", .upToNextMajor(from: "3.0.0")),
22+
.package(name: "Nimble", url: "https://github.com/Quick/Nimble.git", .upToNextMajor(from: "9.0.0"))
2323
],
2424
targets: [
2525
.target(

0 commit comments

Comments
 (0)