Skip to content

Commit 1ca207a

Browse files
adminadmin
authored andcommitted
Updated for release 600.0.1
1 parent a9d365e commit 1ca207a

File tree

23 files changed

+361
-0
lines changed

23 files changed

+361
-0
lines changed

Package.swift

Lines changed: 361 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,361 @@
1+
// swift-tools-version:5.8
2+
3+
import PackageDescription
4+
import Foundation
5+
6+
let package = Package(
7+
name: "swift-syntax",
8+
platforms: [
9+
.iOS("13.0"),
10+
.macCatalyst("13.0"),
11+
.macOS("10.15"),
12+
.tvOS("13.0"),
13+
.watchOS("6.0")
14+
],
15+
products: [
16+
.library(
17+
name: "SwiftBasicFormat",
18+
targets: ["SwiftBasicFormat_Aggregation"]
19+
),
20+
.library(
21+
name: "SwiftCompilerPlugin",
22+
targets: ["SwiftCompilerPlugin_Aggregation"]
23+
),
24+
.library(
25+
name: "SwiftDiagnostics",
26+
targets: ["SwiftDiagnostics_Aggregation"]
27+
),
28+
.library(
29+
name: "SwiftIDEUtils",
30+
targets: ["SwiftIDEUtils_Aggregation"]
31+
),
32+
.library(
33+
name: "SwiftOperators",
34+
targets: ["SwiftOperators_Aggregation"]
35+
),
36+
.library(
37+
name: "SwiftParser",
38+
targets: ["SwiftParser_Aggregation"]
39+
),
40+
.library(
41+
name: "SwiftParserDiagnostics",
42+
targets: ["SwiftParserDiagnostics_Aggregation"]
43+
),
44+
.library(
45+
name: "SwiftRefactor",
46+
targets: ["SwiftRefactor_Aggregation"]
47+
),
48+
.library(
49+
name: "SwiftSyntax",
50+
targets: ["SwiftSyntax_Aggregation"]
51+
),
52+
.library(
53+
name: "SwiftSyntaxBuilder",
54+
targets: ["SwiftSyntaxBuilder_Aggregation"]
55+
),
56+
.library(
57+
name: "SwiftSyntaxMacros",
58+
targets: ["SwiftSyntaxMacros_Aggregation"]
59+
),
60+
.library(
61+
name: "SwiftSyntaxMacroExpansion",
62+
targets: ["SwiftSyntaxMacroExpansion_Aggregation"]
63+
),
64+
.library(
65+
name: "SwiftSyntaxMacrosTestSupport",
66+
targets: ["SwiftSyntaxMacrosTestSupport_Aggregation"]
67+
),
68+
.library(
69+
name: "SwiftSyntaxMacrosGenericTestSupport",
70+
targets: ["SwiftSyntaxMacrosGenericTestSupport_Aggregation"]
71+
),
72+
.library(
73+
name: "_SwiftCompilerPluginMessageHandling",
74+
targets: ["SwiftCompilerPluginMessageHandling_Aggregation"]
75+
),
76+
.library(
77+
name: "_SwiftLibraryPluginProvider",
78+
targets: ["SwiftLibraryPluginProvider_Aggregation"]
79+
)
80+
],
81+
targets: [
82+
.target(
83+
name: "SwiftBasicFormat_Aggregation",
84+
dependencies: [.target(name: "SwiftBasicFormat"), "SwiftSyntax_Aggregation"]
85+
),
86+
.binaryTarget(
87+
name: "SwiftBasicFormat",
88+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/SwiftBasicFormat.xcframework.zip",
89+
checksum: "ed362ef17c54779ba8a5e128c9ab3455a0036109f7458276a8ee63adc2c4c642"
90+
),
91+
.target(
92+
name: "SwiftCompilerPlugin_Aggregation",
93+
dependencies: [
94+
.target(name: "SwiftCompilerPlugin"),
95+
"SwiftCompilerPluginMessageHandling_Aggregation",
96+
"SwiftSyntaxMacros_Aggregation"
97+
]
98+
),
99+
.binaryTarget(
100+
name: "SwiftCompilerPlugin",
101+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/SwiftCompilerPlugin.xcframework.zip",
102+
checksum: "15ca1c305584511e7d801a0dd086864942af04b20d73bcad9b070dcccdb609a7"
103+
),
104+
.target(
105+
name: "SwiftDiagnostics_Aggregation",
106+
dependencies: [.target(name: "SwiftDiagnostics"), "SwiftSyntax_Aggregation"]
107+
),
108+
.binaryTarget(
109+
name: "SwiftDiagnostics",
110+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/SwiftDiagnostics.xcframework.zip",
111+
checksum: "3f807c64a78d6894f8ac1bcc7a7528982c1fcd842a8c2e05aa36a0238a555957"
112+
),
113+
.target(
114+
name: "SwiftIDEUtils_Aggregation",
115+
dependencies: [
116+
.target(name: "SwiftIDEUtils"),
117+
"SwiftSyntax_Aggregation",
118+
"SwiftDiagnostics_Aggregation",
119+
"SwiftParser_Aggregation"
120+
]
121+
),
122+
.binaryTarget(
123+
name: "SwiftIDEUtils",
124+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/SwiftIDEUtils.xcframework.zip",
125+
checksum: "0b6340460f31bd8425a063143503a4fbdc4485e6120a2d4812d9b16046a70a43"
126+
),
127+
.target(
128+
name: "SwiftOperators_Aggregation",
129+
dependencies: [
130+
.target(name: "SwiftOperators"),
131+
"SwiftDiagnostics_Aggregation",
132+
"SwiftParser_Aggregation",
133+
"SwiftSyntax_Aggregation"
134+
]
135+
),
136+
.binaryTarget(
137+
name: "SwiftOperators",
138+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/SwiftOperators.xcframework.zip",
139+
checksum: "4d280460b16d41622f5418d49cda327063fd7327d42ec22e9c219a8f45ca14ae"
140+
),
141+
.target(
142+
name: "SwiftParser_Aggregation",
143+
dependencies: [.target(name: "SwiftParser"), "SwiftSyntax_Aggregation"]
144+
),
145+
.binaryTarget(
146+
name: "SwiftParser",
147+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/SwiftParser.xcframework.zip",
148+
checksum: "913a6c1418d8d1cc0a0009ea5db448ca2e33f05f4178302966db9dc5bdc5ffa8"
149+
),
150+
.target(
151+
name: "SwiftParserDiagnostics_Aggregation",
152+
dependencies: [
153+
.target(name: "SwiftParserDiagnostics"),
154+
"SwiftBasicFormat_Aggregation",
155+
"SwiftDiagnostics_Aggregation",
156+
"SwiftParser_Aggregation",
157+
"SwiftSyntax_Aggregation"
158+
]
159+
),
160+
.binaryTarget(
161+
name: "SwiftParserDiagnostics",
162+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/SwiftParserDiagnostics.xcframework.zip",
163+
checksum: "6a32333f4118d8908ee330941b7977cfd960c0b016f70a27673dae53d750861d"
164+
),
165+
.target(
166+
name: "SwiftRefactor_Aggregation",
167+
dependencies: [
168+
.target(name: "SwiftRefactor"),
169+
"SwiftBasicFormat_Aggregation",
170+
"SwiftParser_Aggregation",
171+
"SwiftSyntax_Aggregation",
172+
"SwiftSyntaxBuilder_Aggregation"
173+
]
174+
),
175+
.binaryTarget(
176+
name: "SwiftRefactor",
177+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/SwiftRefactor.xcframework.zip",
178+
checksum: "9472f62c6eb5f750dbfc9abd21d703a7083ca9db9ca1c8684822b13dd9b48604"
179+
),
180+
.target(
181+
name: "SwiftSyntax_Aggregation",
182+
dependencies: [
183+
.target(name: "SwiftSyntax"),
184+
"_SwiftSyntaxCShims_Aggregation",
185+
"SwiftSyntax509_Aggregation",
186+
"SwiftSyntax510_Aggregation",
187+
"SwiftSyntax600_Aggregation"
188+
]
189+
),
190+
.binaryTarget(
191+
name: "SwiftSyntax",
192+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/SwiftSyntax.xcframework.zip",
193+
checksum: "892a76d2cd7e34cebf6930766f34223c1eea58a176e1b3c64370dd881f6741d7"
194+
),
195+
.target(
196+
name: "SwiftSyntaxBuilder_Aggregation",
197+
dependencies: [
198+
.target(name: "SwiftSyntaxBuilder"),
199+
"SwiftBasicFormat_Aggregation",
200+
"SwiftParser_Aggregation",
201+
"SwiftDiagnostics_Aggregation",
202+
"SwiftParserDiagnostics_Aggregation",
203+
"SwiftSyntax_Aggregation"
204+
]
205+
),
206+
.binaryTarget(
207+
name: "SwiftSyntaxBuilder",
208+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/SwiftSyntaxBuilder.xcframework.zip",
209+
checksum: "397539824cca2d9f6fbe387e207fd894cc6617cdc091d0459b13a6b112f6d4e5"
210+
),
211+
.target(
212+
name: "SwiftSyntaxMacros_Aggregation",
213+
dependencies: [
214+
.target(name: "SwiftSyntaxMacros"),
215+
"SwiftDiagnostics_Aggregation",
216+
"SwiftParser_Aggregation",
217+
"SwiftSyntax_Aggregation",
218+
"SwiftSyntaxBuilder_Aggregation"
219+
]
220+
),
221+
.binaryTarget(
222+
name: "SwiftSyntaxMacros",
223+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/SwiftSyntaxMacros.xcframework.zip",
224+
checksum: "98d04ee26ec04d2bf51c4f8d640fb109ebc0125b19cd8fdf5ab8a967f3cfbd19"
225+
),
226+
.target(
227+
name: "SwiftSyntaxMacroExpansion_Aggregation",
228+
dependencies: [
229+
.target(name: "SwiftSyntaxMacroExpansion"),
230+
"SwiftSyntax_Aggregation",
231+
"SwiftSyntaxBuilder_Aggregation",
232+
"SwiftSyntaxMacros_Aggregation",
233+
"SwiftDiagnostics_Aggregation",
234+
"SwiftOperators_Aggregation"
235+
]
236+
),
237+
.binaryTarget(
238+
name: "SwiftSyntaxMacroExpansion",
239+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/SwiftSyntaxMacroExpansion.xcframework.zip",
240+
checksum: "bd920cb73abbe5b81b9130cfedd542951b5a5a59616de397115208f781dd33d7"
241+
),
242+
.target(
243+
name: "SwiftSyntaxMacrosTestSupport_Aggregation",
244+
dependencies: [
245+
.target(name: "SwiftSyntaxMacrosTestSupport"),
246+
"SwiftSyntax_Aggregation",
247+
"SwiftSyntaxMacroExpansion_Aggregation",
248+
"SwiftSyntaxMacros_Aggregation",
249+
"SwiftSyntaxMacrosGenericTestSupport_Aggregation"
250+
]
251+
),
252+
.binaryTarget(
253+
name: "SwiftSyntaxMacrosTestSupport",
254+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/SwiftSyntaxMacrosTestSupport.xcframework.zip",
255+
checksum: "408a2ebff0899c8c51aba531eb71137adffaf4db76eee4eea031e8cbcbd58795"
256+
),
257+
.target(
258+
name: "SwiftSyntaxMacrosGenericTestSupport_Aggregation",
259+
dependencies: [
260+
.target(name: "SwiftSyntaxMacrosGenericTestSupport"),
261+
"_SwiftSyntaxGenericTestSupport_Aggregation",
262+
"SwiftDiagnostics_Aggregation",
263+
"SwiftIDEUtils_Aggregation",
264+
"SwiftParser_Aggregation",
265+
"SwiftSyntaxMacros_Aggregation",
266+
"SwiftSyntaxMacroExpansion_Aggregation"
267+
]
268+
),
269+
.binaryTarget(
270+
name: "SwiftSyntaxMacrosGenericTestSupport",
271+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/SwiftSyntaxMacrosGenericTestSupport.xcframework.zip",
272+
checksum: "2f92b5a1c8f6cfd9c01f1abe88c48aae22073f15b69e83c13997e860bd3f3764"
273+
),
274+
.target(
275+
name: "SwiftCompilerPluginMessageHandling_Aggregation",
276+
dependencies: [
277+
.target(name: "SwiftCompilerPluginMessageHandling"),
278+
"_SwiftSyntaxCShims_Aggregation",
279+
"SwiftDiagnostics_Aggregation",
280+
"SwiftOperators_Aggregation",
281+
"SwiftParser_Aggregation",
282+
"SwiftSyntax_Aggregation",
283+
"SwiftSyntaxMacros_Aggregation",
284+
"SwiftSyntaxMacroExpansion_Aggregation"
285+
]
286+
),
287+
.binaryTarget(
288+
name: "SwiftCompilerPluginMessageHandling",
289+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/SwiftCompilerPluginMessageHandling.xcframework.zip",
290+
checksum: "a3e498aabffe830aa2e84937113b45196412df2214f7dced37332fc5f8e1ebae"
291+
),
292+
.target(
293+
name: "SwiftLibraryPluginProvider_Aggregation",
294+
dependencies: [
295+
.target(name: "SwiftLibraryPluginProvider"),
296+
"SwiftSyntaxMacros_Aggregation",
297+
"SwiftCompilerPluginMessageHandling_Aggregation",
298+
"_SwiftLibraryPluginProviderCShims_Aggregation"
299+
]
300+
),
301+
.binaryTarget(
302+
name: "SwiftLibraryPluginProvider",
303+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/SwiftLibraryPluginProvider.xcframework.zip",
304+
checksum: "e400dad7a7ff09b6e422e6e4685f8276f762665f3871d12d7998939d9fd7a33c"
305+
),
306+
.target(
307+
name: "_SwiftSyntaxGenericTestSupport_Aggregation",
308+
dependencies: [.target(name: "_SwiftSyntaxGenericTestSupport")]
309+
),
310+
.binaryTarget(
311+
name: "_SwiftSyntaxGenericTestSupport",
312+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/_SwiftSyntaxGenericTestSupport.xcframework.zip",
313+
checksum: "096cb1fb87989137f224179854ebbdf0725b9dea8706b4e12fdfbd77b96a6a6e"
314+
),
315+
.target(
316+
name: "_SwiftSyntaxCShims_Aggregation",
317+
dependencies: [.target(name: "_SwiftSyntaxCShims")]
318+
),
319+
.binaryTarget(
320+
name: "_SwiftSyntaxCShims",
321+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/_SwiftSyntaxCShims.xcframework.zip",
322+
checksum: "646d8ee5b0498ac5e53950ee8cd75e2ac898a2aa0d64d9679a71158d439387fa"
323+
),
324+
.target(
325+
name: "_SwiftLibraryPluginProviderCShims_Aggregation",
326+
dependencies: [.target(name: "_SwiftLibraryPluginProviderCShims")]
327+
),
328+
.binaryTarget(
329+
name: "_SwiftLibraryPluginProviderCShims",
330+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/_SwiftLibraryPluginProviderCShims.xcframework.zip",
331+
checksum: "eb99dbb72b92c7e2df4a7289e4169d46c924bcd091091002a6ca6087bac99355"
332+
),
333+
.target(
334+
name: "SwiftSyntax600_Aggregation",
335+
dependencies: [.target(name: "SwiftSyntax600")]
336+
),
337+
.binaryTarget(
338+
name: "SwiftSyntax600",
339+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/SwiftSyntax600.xcframework.zip",
340+
checksum: "9e2149b0495f364435b0dbb191722609b82cb4a8192abef45be1afe98bab218d"
341+
),
342+
.target(
343+
name: "SwiftSyntax510_Aggregation",
344+
dependencies: [.target(name: "SwiftSyntax510")]
345+
),
346+
.binaryTarget(
347+
name: "SwiftSyntax510",
348+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/SwiftSyntax510.xcframework.zip",
349+
checksum: "b93439b2aa132f1a3c629693a3fb55bf6f2a7c0f445d3cdccd7fedd6f20bda01"
350+
),
351+
.target(
352+
name: "SwiftSyntax509_Aggregation",
353+
dependencies: [.target(name: "SwiftSyntax509")]
354+
),
355+
.binaryTarget(
356+
name: "SwiftSyntax509",
357+
url: "https://github.com/swift-precompiled/swift-syntax/releases/download/600.0.1/SwiftSyntax509.xcframework.zip",
358+
checksum: "c2e45865ac5010d280367c78f6cca288caa6064e2ad828c215afdc6374931aa4"
359+
)
360+
]
361+
)

Sources/SwiftBasicFormat_Aggregation/Empty.swift

Whitespace-only changes.

Sources/SwiftCompilerPluginMessageHandling_Aggregation/Empty.swift

Whitespace-only changes.

Sources/SwiftCompilerPlugin_Aggregation/Empty.swift

Whitespace-only changes.

Sources/SwiftDiagnostics_Aggregation/Empty.swift

Whitespace-only changes.

Sources/SwiftIDEUtils_Aggregation/Empty.swift

Whitespace-only changes.

Sources/SwiftLibraryPluginProvider_Aggregation/Empty.swift

Whitespace-only changes.

Sources/SwiftOperators_Aggregation/Empty.swift

Whitespace-only changes.

Sources/SwiftParserDiagnostics_Aggregation/Empty.swift

Whitespace-only changes.

Sources/SwiftParser_Aggregation/Empty.swift

Whitespace-only changes.

0 commit comments

Comments
 (0)