We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 71afbc1 + 9a561e6 commit 27db137Copy full SHA for 27db137
Package.swift
@@ -172,7 +172,7 @@ let package = Package(
172
173
.target(
174
name: "SwiftSyntax",
175
- dependencies: ["SwiftSyntax509"],
+ dependencies: ["SwiftSyntax509", "SwiftSyntax510"],
176
exclude: ["CMakeLists.txt"],
177
swiftSettings: swiftSyntaxSwiftSettings
178
),
@@ -190,6 +190,11 @@ let package = Package(
190
dependencies: []
191
192
193
+ .target(
194
+ name: "SwiftSyntax510",
195
+ dependencies: []
196
+ ),
197
+
198
// MARK: SwiftSyntaxBuilder
199
200
Sources/SwiftSyntax510/Empty.swift
@@ -0,0 +1,3 @@
1
+// The SwiftSyntax510 module is intentionally empty.
2
+// It serves as an indicator which version of swift-syntax a package is building against.
3
+// See the 'Macro Versioning.md' document for more details.
0 commit comments