forked from swiftlang/swift-package-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Package.swift
775 lines (719 loc) · 25.4 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
// swift-tools-version:5.9
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2014-2024 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
import PackageDescription
import class Foundation.ProcessInfo
// When building the toolchain on the CI for ELF platforms, remove the CI's
// stdlib absolute runpath and add ELF's $ORIGIN relative paths before installing.
let swiftpmLinkSettings : [LinkerSetting]
let packageLibraryLinkSettings : [LinkerSetting]
if let resourceDirPath = ProcessInfo.processInfo.environment["SWIFTCI_INSTALL_RPATH_OS"] {
swiftpmLinkSettings = [ .unsafeFlags(["-no-toolchain-stdlib-rpath", "-Xlinker", "-rpath", "-Xlinker", "$ORIGIN/../lib/swift/\(resourceDirPath)"]) ]
packageLibraryLinkSettings = [ .unsafeFlags(["-no-toolchain-stdlib-rpath", "-Xlinker", "-rpath", "-Xlinker", "$ORIGIN/../../\(resourceDirPath)"]) ]
} else {
swiftpmLinkSettings = []
packageLibraryLinkSettings = []
}
/** SwiftPMDataModel is the subset of SwiftPM product that includes just its data model.
This allows some clients (such as IDEs) that use SwiftPM's data model but not its build system
to not have to depend on SwiftDriver, SwiftLLBuild, etc. We should probably have better names here,
though that could break some clients.
*/
let swiftPMDataModelProduct = (
name: "SwiftPMDataModel",
targets: [
"PackageCollections",
"PackageCollectionsModel",
"PackageGraph",
"PackageLoading",
"PackageMetadata",
"PackageModel",
"SourceControl",
"Workspace",
]
)
/** The `libSwiftPM` set of interfaces to programmatically work with Swift
packages. `libSwiftPM` includes all of the SwiftPM code except the
command line tools, while `libSwiftPMDataModel` includes only the data model.
NOTE: This API is *unstable* and may change at any time.
*/
let swiftPMProduct = (
name: "SwiftPM",
targets: swiftPMDataModelProduct.targets + [
"Build",
"LLBuildManifest",
"SourceKitLSPAPI",
"SPMLLBuild",
]
)
#if os(Windows)
let systemSQLitePkgConfig: String? = nil
#else
let systemSQLitePkgConfig: String? = "sqlite3"
#endif
/** An array of products which have two versions listed: one dynamically linked, the other with the
automatic linking type with `-auto` suffix appended to product's name.
*/
let autoProducts = [swiftPMProduct, swiftPMDataModelProduct]
let packageModelResourcesSettings: [SwiftSetting]
let packageModelResources: [Resource]
if ProcessInfo.processInfo.environment["SWIFTPM_USE_LIBRARIES_METADATA"] == nil {
packageModelResources = []
packageModelResourcesSettings = [.define("SKIP_RESOURCE_SUPPORT")]
} else {
packageModelResources = [
.copy("InstalledLibrariesSupport/provided-libraries.json"),
]
packageModelResourcesSettings = []
}
let package = Package(
name: "SwiftPM",
platforms: [
.macOS(.v13),
.iOS(.v16)
],
products:
autoProducts.flatMap {
[
.library(
name: $0.name,
type: .dynamic,
targets: $0.targets
),
.library(
name: "\($0.name)-auto",
targets: $0.targets
)
]
} + [
.library(
name: "XCBuildSupport",
targets: ["XCBuildSupport"]
),
.library(
name: "PackageDescription",
type: .dynamic,
targets: ["PackageDescription", "CompilerPluginSupport"]
),
.library(
name: "PackagePlugin",
type: .dynamic,
targets: ["PackagePlugin"]
),
.library(
name: "PackageCollectionsModel",
targets: ["PackageCollectionsModel"]
),
.library(
name: "SwiftPMPackageCollections",
targets: [
"PackageCollections",
"PackageCollectionsModel",
"PackageCollectionsSigning",
"PackageModel",
]
),
],
targets: [
// The `PackageDescription` target provides the API that is available
// to `Package.swift` manifests. Here we build a debug version of the
// library; the bootstrap scripts build the deployable version.
.target(
name: "PackageDescription",
exclude: ["CMakeLists.txt"],
swiftSettings: [
.define("USE_IMPL_ONLY_IMPORTS"),
.unsafeFlags(["-package-description-version", "999.0"]),
.unsafeFlags(["-enable-library-evolution"]),
],
linkerSettings: packageLibraryLinkSettings
),
// The `PackagePlugin` target provides the API that is available to
// plugin scripts. Here we build a debug version of the library; the
// bootstrap scripts build the deployable version.
.target(
name: "PackagePlugin",
exclude: ["CMakeLists.txt"],
swiftSettings: [
.unsafeFlags(["-package-description-version", "999.0"]),
.unsafeFlags(["-enable-library-evolution"]),
],
linkerSettings: packageLibraryLinkSettings
),
.target(
name: "SourceKitLSPAPI",
dependencies: [
"Build",
"SPMBuildCore"
],
exclude: ["CMakeLists.txt"],
swiftSettings: [.enableExperimentalFeature("AccessLevelOnImport")]
),
// MARK: SwiftPM specific support libraries
.systemLibrary(name: "SPMSQLite3", pkgConfig: systemSQLitePkgConfig),
.target(
name: "Basics",
dependencies: [
"SPMSQLite3",
.product(name: "DequeModule", package: "swift-collections"),
.product(name: "OrderedCollections", package: "swift-collections"),
.product(name: "SwiftToolsSupport-auto", package: "swift-tools-support-core"),
.product(name: "SystemPackage", package: "swift-system"),
],
exclude: ["CMakeLists.txt", "Vendor/README.md"]
),
.target(
/** The llbuild manifest model */
name: "LLBuildManifest",
dependencies: ["Basics"],
exclude: ["CMakeLists.txt"]
),
.target(
/** Package registry support */
name: "PackageRegistry",
dependencies: [
"Basics",
"PackageFingerprint",
"PackageLoading",
"PackageModel",
"PackageSigning",
],
exclude: ["CMakeLists.txt"]
),
.target(
/** Source control operations */
name: "SourceControl",
dependencies: [
"Basics",
"PackageModel"
],
exclude: ["CMakeLists.txt"]
),
.target(
/** Shim for llbuild library */
name: "SPMLLBuild",
dependencies: ["Basics"],
exclude: ["CMakeLists.txt"]
),
// MARK: Project Model
.target(
/** Primitive Package model objects */
name: "PackageModel",
dependencies: ["Basics"],
exclude: ["CMakeLists.txt", "README.md"],
resources: packageModelResources,
swiftSettings: packageModelResourcesSettings
),
.target(
/** Package model conventions and loading support */
name: "PackageLoading",
dependencies: [
"Basics",
"PackageModel",
"SourceControl",
],
exclude: ["CMakeLists.txt", "README.md"]
),
// MARK: Package Dependency Resolution
.target(
/** Data structures and support for complete package graphs */
name: "PackageGraph",
dependencies: [
"Basics",
"PackageLoading",
"PackageModel"
],
exclude: ["CMakeLists.txt", "README.md"]
),
// MARK: Package Collections
.target(
/** Package collections models */
name: "PackageCollectionsModel",
dependencies: [],
exclude: [
"Formats/v1.md"
]
),
.target(
/** Data structures and support for package collections */
name: "PackageCollections",
dependencies: [
"Basics",
"PackageCollectionsModel",
"PackageCollectionsSigning",
"PackageModel",
"SourceControl",
]
),
.target(
name: "PackageCollectionsSigning",
dependencies: [
.product(name: "Crypto", package: "swift-crypto"),
.product(name: "X509", package: "swift-certificates"),
"Basics",
"PackageCollectionsModel",
]
),
.target(
name: "PackageFingerprint",
dependencies: [
"Basics",
"PackageModel",
],
exclude: ["CMakeLists.txt"]
),
.target(
name: "PackageSigning",
dependencies: [
.product(name: "Crypto", package: "swift-crypto"),
.product(name: "X509", package: "swift-certificates"),
"Basics",
"PackageModel",
],
exclude: ["CMakeLists.txt"]
),
// MARK: Package Manager Functionality
.target(
/** Builds Modules and Products */
name: "SPMBuildCore",
dependencies: [
"Basics",
"PackageGraph"
],
exclude: ["CMakeLists.txt"]
),
.target(
/** Builds Modules and Products */
name: "Build",
dependencies: [
"Basics",
"LLBuildManifest",
"PackageGraph",
"SPMBuildCore",
"SPMLLBuild",
.product(name: "SwiftDriver", package: "swift-driver"),
"DriverSupport",
],
exclude: ["CMakeLists.txt"]
),
.target(
name: "DriverSupport",
dependencies: [
"Basics",
"PackageModel",
.product(name: "SwiftDriver", package: "swift-driver"),
],
exclude: ["CMakeLists.txt"]
),
.target(
/** Support for building using Xcode's build system */
name: "XCBuildSupport",
dependencies: ["DriverSupport", "SPMBuildCore", "PackageGraph"],
exclude: ["CMakeLists.txt", "CODEOWNERS"]
),
.target(
/** High level functionality */
name: "Workspace",
dependencies: [
"Basics",
"PackageFingerprint",
"PackageGraph",
"PackageModel",
"PackageRegistry",
"PackageSigning",
"SourceControl",
"SPMBuildCore",
],
exclude: ["CMakeLists.txt"]
),
.target(
// ** High level interface for package discovery */
name: "PackageMetadata",
dependencies: [
"Basics",
"PackageCollections",
"PackageModel",
"PackageRegistry",
"PackageSigning",
]
),
// MARK: Commands
.target(
/** Minimal set of commands required for bootstrapping a new SwiftPM */
name: "CoreCommands",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
"Basics",
"Build",
"PackageLoading",
"PackageModel",
"PackageGraph",
"Workspace",
"XCBuildSupport",
],
exclude: ["CMakeLists.txt"]
),
.target(
/** High-level commands */
name: "Commands",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
.product(name: "OrderedCollections", package: "swift-collections"),
"Basics",
"Build",
"CoreCommands",
"PackageGraph",
"SourceControl",
"Workspace",
"XCBuildSupport",
],
exclude: ["CMakeLists.txt", "README.md"]
),
.target(
/** Interacts with Swift SDKs used for cross-compilation */
name: "SwiftSDKCommand",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
"Basics",
"CoreCommands",
"SPMBuildCore",
"PackageModel",
],
exclude: ["CMakeLists.txt", "README.md"]
),
.target(
/** Interacts with package collections */
name: "PackageCollectionsCommand",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
"Basics",
"Commands",
"CoreCommands",
"PackageCollections",
"PackageModel",
]
),
.target(
/** Interact with package registry */
name: "PackageRegistryCommand",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
"Basics",
"Commands",
"CoreCommands",
"PackageGraph",
"PackageLoading",
"PackageModel",
"PackageRegistry",
"PackageSigning",
"SourceControl",
"SPMBuildCore",
"Workspace",
]
),
.executableTarget(
/** The main executable provided by SwiftPM */
name: "swift-package",
dependencies: ["Basics", "Commands"],
exclude: ["CMakeLists.txt"]
),
.executableTarget(
/** Builds packages */
name: "swift-build",
dependencies: ["Commands"],
exclude: ["CMakeLists.txt"]
),
.executableTarget(
/** Builds SwiftPM itself for bootstrapping (minimal version of `swift-build`) */
name: "swift-bootstrap",
dependencies: [
.product(name: "ArgumentParser", package: "swift-argument-parser"),
"Basics",
"Build",
"PackageGraph",
"PackageLoading",
"PackageModel",
"XCBuildSupport",
],
exclude: ["CMakeLists.txt"]
),
.executableTarget(
/** Interacts with Swift SDKs used for cross-compilation */
name: "swift-experimental-sdk",
dependencies: ["Commands", "SwiftSDKCommand"],
exclude: ["CMakeLists.txt"]
),
.executableTarget(
/** Runs package tests */
name: "swift-test",
dependencies: ["Commands"],
exclude: ["CMakeLists.txt"]
),
.executableTarget(
/** Runs an executable product */
name: "swift-run",
dependencies: ["Commands"],
exclude: ["CMakeLists.txt"]
),
.executableTarget(
/** Interacts with package collections */
name: "swift-package-collection",
dependencies: ["Commands", "PackageCollectionsCommand"]
),
.executableTarget(
/** Multi-command entry point for SwiftPM. */
name: "swift-package-manager",
dependencies: [
"Basics",
"Commands",
"SwiftSDKCommand",
"PackageCollectionsCommand",
"PackageRegistryCommand"
],
linkerSettings: swiftpmLinkSettings
),
.executableTarget(
/** Interact with package registry */
name: "swift-package-registry",
dependencies: ["Commands", "PackageRegistryCommand"]
),
// MARK: Support for Swift macros, should eventually move to a plugin-based solution
.target(
name: "CompilerPluginSupport",
dependencies: ["PackageDescription"],
exclude: ["CMakeLists.txt"],
swiftSettings: [
.unsafeFlags(["-package-description-version", "999.0"]),
.unsafeFlags(["-enable-library-evolution"]),
]
),
// MARK: Additional Test Dependencies
.target(
/** SwiftPM test support library */
name: "SPMTestSupport",
dependencies: [
"Basics",
"Build",
"PackageFingerprint",
"PackageGraph",
"PackageLoading",
"PackageRegistry",
"PackageSigning",
"SourceControl",
.product(name: "TSCTestSupport", package: "swift-tools-support-core"),
"Workspace",
"XCBuildSupport",
]
),
.target(
/** Test for thread-santizer. */
name: "tsan_utils",
dependencies: []),
// MARK: SwiftPM tests
.testTarget(
name: "SourceKitLSPAPITests",
dependencies: [
"SourceKitLSPAPI",
"SPMTestSupport",
]
),
.testTarget(
name: "BasicsTests",
dependencies: ["Basics", "SPMTestSupport", "tsan_utils"],
exclude: [
"Archiver/Inputs/archive.tar.gz",
"Archiver/Inputs/archive.zip",
"Archiver/Inputs/invalid_archive.tar.gz",
"Archiver/Inputs/invalid_archive.zip",
]
),
.testTarget(
name: "BuildTests",
dependencies: ["Build", "PackageModel", "SPMTestSupport"]
),
.testTarget(
name: "LLBuildManifestTests",
dependencies: ["Basics", "LLBuildManifest", "SPMTestSupport"]
),
.testTarget(
name: "WorkspaceTests",
dependencies: ["Workspace", "SPMTestSupport"]
),
.testTarget(
name: "PackageDescriptionTests",
dependencies: ["PackageDescription"]
),
.testTarget(
name: "SPMBuildCoreTests",
dependencies: ["SPMBuildCore", "SPMTestSupport"]
),
.testTarget(
name: "PackageLoadingTests",
dependencies: ["PackageLoading", "SPMTestSupport"],
exclude: ["Inputs", "pkgconfigInputs"]
),
.testTarget(
name: "PackageModelTests",
dependencies: ["PackageModel", "SPMTestSupport"]
),
.testTarget(
name: "PackageGraphTests",
dependencies: ["PackageGraph", "SPMTestSupport"]
),
.testTarget(
name: "PackageGraphPerformanceTests",
dependencies: ["PackageGraph", "SPMTestSupport"],
exclude: [
"Inputs/PerfectHTTPServer.json",
"Inputs/ZewoHTTPServer.json",
"Inputs/SourceKitten.json",
"Inputs/kitura.json",
]
),
.testTarget(
name: "PackageCollectionsModelTests",
dependencies: ["PackageCollectionsModel", "SPMTestSupport"]
),
.testTarget(
name: "PackageCollectionsSigningTests",
dependencies: ["PackageCollectionsSigning", "SPMTestSupport"]
),
.testTarget(
name: "PackageCollectionsTests",
dependencies: ["PackageCollections", "SPMTestSupport", "tsan_utils"]
),
.testTarget(
name: "PackageFingerprintTests",
dependencies: ["PackageFingerprint", "SPMTestSupport"]
),
.testTarget(
name: "PackagePluginAPITests",
dependencies: ["PackagePlugin", "SPMTestSupport"]
),
.testTarget(
name: "PackageRegistryTests",
dependencies: ["SPMTestSupport", "PackageRegistry"]
),
.testTarget(
name: "PackageSigningTests",
dependencies: ["SPMTestSupport", "PackageSigning"]
),
.testTarget(
name: "SourceControlTests",
dependencies: ["SourceControl", "SPMTestSupport"],
exclude: ["Inputs/TestRepo.tgz"]
),
.testTarget(
name: "XCBuildSupportTests",
dependencies: ["XCBuildSupport", "SPMTestSupport"],
exclude: ["Inputs/Foo.pc"]
)
],
swiftLanguageVersions: [.v5]
)
// Workaround SPM's attempt to link in executables which does not work on all
// platforms.
#if !os(Windows)
package.targets.append(contentsOf: [
.testTarget(
name: "FunctionalPerformanceTests",
dependencies: [
"swift-package-manager",
"SPMTestSupport"
]
),
])
// rdar://101868275 "error: cannot find 'XCTAssertEqual' in scope" can affect almost any functional test, so we flat out disable them all until we know what is going on
if ProcessInfo.processInfo.environment["SWIFTCI_DISABLE_SDK_DEPENDENT_TESTS"] == nil {
package.targets.append(contentsOf: [
.testTarget(
name: "FunctionalTests",
dependencies: [
"swift-package-manager",
"PackageModel",
"SPMTestSupport"
]
),
.executableTarget(
name: "dummy-swiftc",
dependencies: [
"Basics",
]
),
.testTarget(
name: "CommandsTests",
dependencies: [
"swift-package-manager",
"Basics",
"Build",
"Commands",
"PackageModel",
"PackageRegistryCommand",
"SourceControl",
"SPMTestSupport",
"Workspace",
"dummy-swiftc",
]
),
])
}
#endif
// Add package dependency on llbuild when not bootstrapping.
//
// When bootstrapping SwiftPM, we can't use llbuild as a package dependency it
// will provided by whatever build system (SwiftCI, bootstrap script) is driving
// the build process. So, we only add these dependencies if SwiftPM is being
// built directly using SwiftPM. It is a bit unfortunate that we've add the
// package dependency like this but there is no other good way of expressing
// this right now.
/// When not using local dependencies, the branch to use for llbuild and TSC repositories.
let relatedDependenciesBranch = "main"
if ProcessInfo.processInfo.environment["SWIFTPM_LLBUILD_FWK"] == nil {
if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
package.dependencies += [
.package(url: "https://github.com/apple/swift-llbuild.git", branch: relatedDependenciesBranch),
]
} else {
// In Swift CI, use a local path to llbuild to interoperate with tools
// like `update-checkout`, which control the sources externally.
package.dependencies += [
.package(name: "swift-llbuild", path: "../llbuild"),
]
}
package.targets.first(where: { $0.name == "SPMLLBuild" })!.dependencies += [
.product(name: "llbuildSwift", package: "swift-llbuild"),
]
}
if ProcessInfo.processInfo.environment["SWIFTCI_USE_LOCAL_DEPS"] == nil {
package.dependencies += [
.package(url: "https://github.com/apple/swift-tools-support-core.git", branch: relatedDependenciesBranch),
// The 'swift-argument-parser' version declared here must match that
// used by 'swift-driver' and 'sourcekit-lsp'. Please coordinate
// dependency version changes here with those projects.
.package(url: "https://github.com/apple/swift-argument-parser.git", .upToNextMinor(from: "1.2.2")),
.package(url: "https://github.com/apple/swift-driver.git", branch: relatedDependenciesBranch),
.package(url: "https://github.com/apple/swift-crypto.git", .upToNextMinor(from: "3.0.0")),
.package(url: "https://github.com/apple/swift-system.git", .upToNextMinor(from: "1.1.1")),
.package(url: "https://github.com/apple/swift-collections.git", .upToNextMinor(from: "1.0.1")),
.package(url: "https://github.com/apple/swift-certificates.git", .upToNextMinor(from: "1.0.1")),
]
} else {
package.dependencies += [
.package(path: "../swift-tools-support-core"),
.package(path: "../swift-argument-parser"),
.package(path: "../swift-driver"),
.package(path: "../swift-crypto"),
.package(path: "../swift-system"),
.package(path: "../swift-collections"),
.package(path: "../swift-certificates"),
]
}