Skip to content

Commit ef0f7c5

Browse files
committed
Fixed Package.swift dependency
1 parent 4319e31 commit ef0f7c5

File tree

2 files changed

+23
-9
lines changed

2 files changed

+23
-9
lines changed

Package.resolved

+17-8
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
{
22
"pins" : [
33
{
4-
"identity" : "swift-macro-testing",
4+
"identity" : "swift-case-paths",
55
"kind" : "remoteSourceControl",
6-
"location" : "https://github.com/pointfreeco/swift-macro-testing.git",
6+
"location" : "https://github.com/pointfreeco/swift-case-paths.git",
77
"state" : {
8-
"revision" : "10dcef36314ddfea6f60442169b0b320204cbd35",
9-
"version" : "0.2.2"
8+
"revision" : "76d7791b5bda47df7e3d4690c4c3aaf089730707",
9+
"version" : "1.2.1"
1010
}
1111
},
1212
{
13-
"identity" : "swift-macro-toolkit",
13+
"identity" : "swift-macro-testing",
1414
"kind" : "remoteSourceControl",
15-
"location" : "https://github.com/stackotter/swift-macro-toolkit.git",
15+
"location" : "https://github.com/pointfreeco/swift-macro-testing.git",
1616
"state" : {
17-
"revision" : "106daeb38eb3f52b1540aed981fc63fa22274576",
18-
"version" : "0.3.1"
17+
"revision" : "10dcef36314ddfea6f60442169b0b320204cbd35",
18+
"version" : "0.2.2"
1919
}
2020
},
2121
{
@@ -35,6 +35,15 @@
3535
"revision" : "74203046135342e4a4a627476dd6caf8b28fe11b",
3636
"version" : "509.0.0"
3737
}
38+
},
39+
{
40+
"identity" : "xctest-dynamic-overlay",
41+
"kind" : "remoteSourceControl",
42+
"location" : "https://github.com/pointfreeco/xctest-dynamic-overlay",
43+
"state" : {
44+
"revision" : "b58e6627149808b40634c4552fcf2f44d0b3ca87",
45+
"version" : "1.1.0"
46+
}
3847
}
3948
],
4049
"version" : 2

Package.swift

+6-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,12 @@ let package = Package(
4141
),
4242

4343
// Library that exposes a macro as part of its API, which is used in client programs.
44-
.target(name: "Sync", dependencies: ["SyncMacros"]),
44+
.target(name: "Sync", dependencies: [
45+
"SyncMacros",
46+
47+
// For enum support
48+
.product(name: "CasePaths", package: "swift-case-paths"),
49+
]),
4550

4651
// A client of the library, which is able to use the macro in its own code.
4752
.executableTarget(name: "SyncClient", dependencies: ["Sync"]),

0 commit comments

Comments
 (0)