Skip to content

Commit 17cd4e6

Browse files
committed
Sort packages in Package.swift
1 parent 92cfbca commit 17cd4e6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Package.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,24 @@ let package = Package(
1515
),
1616
],
1717
dependencies: [
18-
.package(url: "https://github.com/swiftkube/model.git", .upToNextMinor(from: "0.16.0")),
19-
.package(url: "https://github.com/swift-server/async-http-client.git", .upToNextMajor(from: "1.24.2")),
2018
.package(url: "https://github.com/apple/swift-log.git", .upToNextMajor(from: "1.6.2")),
2119
.package(url: "https://github.com/apple/swift-metrics.git", .upToNextMajor(from: "2.5.1")),
22-
.package(url: "https://github.com/jpsim/Yams.git", .upToNextMajor(from: "5.1.3")),
2320
.package(url: "https://github.com/apple/swift-nio", .upToNextMajor(from: "2.80.0")),
21+
.package(url: "https://github.com/jpsim/Yams.git", .upToNextMajor(from: "5.1.3")),
22+
.package(url: "https://github.com/swiftkube/model.git", .upToNextMinor(from: "0.16.0")),
23+
.package(url: "https://github.com/swift-server/async-http-client.git", .upToNextMajor(from: "1.24.2")),
2424
],
2525
targets: [
2626
.target(
2727
name: "SwiftkubeClient",
2828
dependencies: [
29-
.product(name: "SwiftkubeModel", package: "model"),
3029
.product(name: "AsyncHTTPClient", package: "async-http-client"),
3130
.product(name: "Logging", package: "swift-log"),
3231
.product(name: "Metrics", package: "swift-metrics"),
33-
.product(name: "Yams", package: "Yams"),
3432
.product(name: "NIO", package: "swift-nio"),
3533
.product(name: "NIOFoundationCompat", package: "swift-nio"),
34+
.product(name: "SwiftkubeModel", package: "model"),
35+
.product(name: "Yams", package: "Yams"),
3636
]
3737
),
3838
.testTarget(

0 commit comments

Comments
 (0)