@@ -53,7 +53,7 @@ let package = Package(
53
53
name: " SourceKitLSP " ,
54
54
dependencies: [
55
55
" BuildServerProtocol " ,
56
- " IndexStoreDB " ,
56
+ . product ( name : " IndexStoreDB " , package : " indexstore-db " ) ,
57
57
" LanguageServerProtocol " ,
58
58
" LanguageServerProtocolJSONRPC " ,
59
59
" SKCore " ,
@@ -75,7 +75,7 @@ let package = Package(
75
75
" CSKTestSupport " ,
76
76
" LSPTestSupport " ,
77
77
" SourceKitLSP " ,
78
- . product( name: " ISDBTestSupport " , package : " IndexStoreDB " ) ,
78
+ . product( name: " ISDBTestSupport " , package : " indexstore-db " ) ,
79
79
. product( name: " SwiftToolsSupport-auto " , package : " swift-tools-support-core " ) ,
80
80
] ,
81
81
resources: [
@@ -96,7 +96,7 @@ let package = Package(
96
96
" BuildServerProtocol " ,
97
97
" LanguageServerProtocol " ,
98
98
" SKCore " ,
99
- . product( name: " SwiftPM-auto " , package : " SwiftPM " )
99
+ . product( name: " SwiftPM-auto " , package : " swift-package-manager " )
100
100
] ,
101
101
exclude: [ " CMakeLists.txt " ] ) ,
102
102
@@ -119,7 +119,7 @@ let package = Package(
119
119
" LanguageServerProtocol " ,
120
120
" LanguageServerProtocolJSONRPC " ,
121
121
" SKSupport " ,
122
- . product( name: " SwiftPMDataModel-auto " , package : " SwiftPM " ) ,
122
+ . product( name: " SwiftPMDataModel-auto " , package : " swift-package-manager " ) ,
123
123
. product( name: " SwiftToolsSupport-auto " , package : " swift-tools-support-core " ) ,
124
124
] ,
125
125
exclude: [ " CMakeLists.txt " ] ) ,
@@ -249,16 +249,16 @@ let package = Package(
249
249
if ProcessInfo . processInfo. environment [ " SWIFTCI_USE_LOCAL_DEPS " ] == nil {
250
250
// Building standalone.
251
251
package . dependencies += [
252
- . package ( name : " IndexStoreDB " , url: " https://github.com/apple/indexstore-db.git " , branch: " main " ) ,
253
- . package ( name : " SwiftPM " , url: " https://github.com/apple/swift-package-manager.git " , branch: " main " ) ,
252
+ . package ( url: " https://github.com/apple/indexstore-db.git " , branch: " main " ) ,
253
+ . package ( url: " https://github.com/apple/swift-package-manager.git " , branch: " main " ) ,
254
254
. package ( url: " https://github.com/apple/swift-tools-support-core.git " , branch: " main " ) ,
255
255
. package ( url: " https://github.com/apple/swift-argument-parser.git " , from: " 1.2.2 " ) ,
256
256
. package ( url: " https://github.com/apple/swift-syntax.git " , branch: " main " ) ,
257
257
]
258
258
} else {
259
259
package . dependencies += [
260
- . package ( name : " IndexStoreDB " , path: " ../indexstore-db " ) ,
261
- . package ( name: " SwiftPM " , path: " ../swiftpm " ) ,
260
+ . package ( path: " ../indexstore-db " ) ,
261
+ . package ( name: " swift-package-manager " , path: " ../swiftpm " ) ,
262
262
. package ( path: " ../swift-tools-support-core " ) ,
263
263
. package ( path: " ../swift-argument-parser " ) ,
264
264
. package ( path: " ../swift-syntax " )
0 commit comments