Skip to content

Commit 2c8165b

Browse files
committed
Fix when building with Swift 6.0
1 parent 2d0ae75 commit 2c8165b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Package.swift

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,23 +25,23 @@ let package = Package(
2525
"MutationKit",
2626
"PackageKit",
2727
.product(name: "ArgumentParser", package: "swift-argument-parser"),
28-
],
28+
]
2929
),
3030

3131
.target(
3232
name: "CoreMutation",
3333
dependencies: [
3434
"PackageKit",
3535
.product(name: "Algorithms", package: "swift-algorithms"),
36-
],
36+
]
3737
),
3838

3939
.testTarget(
4040
name: "CoreMutationTests",
4141
dependencies: [
4242
"CoreMutation",
4343
"PackageKit",
44-
],
44+
]
4545
),
4646

4747
.target(
@@ -51,7 +51,7 @@ let package = Package(
5151
"PackageKit",
5252
.product(name: "SwiftParser", package: "swift-syntax"),
5353
.product(name: "SwiftSyntax", package: "swift-syntax"),
54-
],
54+
]
5555
),
5656

5757
.testTarget(
@@ -62,7 +62,7 @@ let package = Package(
6262
"SyntaxMutation",
6363
.product(name: "SwiftSyntax", package: "swift-syntax"),
6464
.product(name: "SwiftSyntaxBuilder", package: "swift-syntax"),
65-
],
65+
]
6666
),
6767

6868
.target(
@@ -72,21 +72,21 @@ let package = Package(
7272
"PackageKit",
7373
"SyntaxMutation",
7474
.product(name: "SwiftSyntax", package: "swift-syntax"),
75-
],
75+
]
7676
),
7777

7878
.testTarget(
7979
name: "MutationKitTests",
8080
dependencies: [
8181
"MutationKit",
82-
],
82+
]
8383
),
8484

8585
.target(
8686
name: "PackageKit",
8787
dependencies: [
8888
.product(name: "Subprocess", package: "swift-subprocess"),
89-
],
89+
]
9090
),
9191

9292
.testTarget(
@@ -96,7 +96,7 @@ let package = Package(
9696
],
9797
resources: [
9898
.copy("TestPackages"),
99-
],
99+
]
100100
),
101101
]
102102
)

0 commit comments

Comments
 (0)