Skip to content

Commit e8e3bd5

Browse files
committed
Format the Package.swift file as well
1 parent 64fad7d commit e8e3bd5

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

Package.swift

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,23 @@
1313
import PackageDescription
1414

1515
let package = Package(
16-
name: "swift-algorithms",
17-
products: [
18-
.library(
19-
name: "Algorithms",
20-
targets: ["Algorithms"]),
21-
],
22-
dependencies: [
23-
.package(url: "https://github.com/apple/swift-numerics.git", from: "1.0.0"),
24-
],
25-
targets: [
26-
.target(
27-
name: "Algorithms",
28-
dependencies: [
29-
.product(name: "RealModule", package: "swift-numerics"),
30-
]),
31-
.testTarget(
32-
name: "SwiftAlgorithmsTests",
33-
dependencies: ["Algorithms"]),
34-
]
16+
name: "swift-algorithms",
17+
products: [
18+
.library(
19+
name: "Algorithms",
20+
targets: ["Algorithms"])
21+
],
22+
dependencies: [
23+
.package(url: "https://github.com/apple/swift-numerics.git", from: "1.0.0")
24+
],
25+
targets: [
26+
.target(
27+
name: "Algorithms",
28+
dependencies: [
29+
.product(name: "RealModule", package: "swift-numerics")
30+
]),
31+
.testTarget(
32+
name: "SwiftAlgorithmsTests",
33+
dependencies: ["Algorithms"]),
34+
]
3535
)

0 commit comments

Comments
 (0)