The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build SwiftPM, reference 1.0.8 (7df932), with Swift 6.0 for macOS (SPM) on 16 Sep 2024 06:58:22 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.0.0-Release.Candidate.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

351 |         public static let v10_16: MacOSVersion = .init(string: "11.0")
    |                           |- warning: static property 'v10_16' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v10_16' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
352 |
353 |         /// The value that represents macOS 11.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:356:27: warning: static property 'v11' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
296 |
297 |     /// The supported macOS version.
298 |     public struct MacOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacOSVersion' conform to the 'Sendable' protocol
299 |         fileprivate static let name = "macOS"
300 |         fileprivate static let minimumMajorVersion = 10
    :
354 |         /// - Since: First available in PackageDescription 5.3.
355 |         @available(_PackageDescription, introduced: 5.3)
356 |         public static let v11: MacOSVersion = .init(string: "11.0")
    |                           |- warning: static property 'v11' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v11' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
357 |
358 |         /// The value that represents macOS 12.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:362:27: warning: static property 'v12' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
296 |
297 |     /// The supported macOS version.
298 |     public struct MacOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacOSVersion' conform to the 'Sendable' protocol
299 |         fileprivate static let name = "macOS"
300 |         fileprivate static let minimumMajorVersion = 10
    :
360 |         /// - Since: First available in PackageDescription 5.5.
361 |         @available(_PackageDescription, introduced: 5.5)
362 |         public static let v12: MacOSVersion = .init(string: "12.0")
    |                           |- warning: static property 'v12' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v12' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
363 |
364 |         /// The value that represents macOS 13.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:368:27: warning: static property 'v13' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
296 |
297 |     /// The supported macOS version.
298 |     public struct MacOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacOSVersion' conform to the 'Sendable' protocol
299 |         fileprivate static let name = "macOS"
300 |         fileprivate static let minimumMajorVersion = 10
    :
366 |         /// - Since: First available in PackageDescription 5.7.
367 |         @available(_PackageDescription, introduced: 5.7)
368 |         public static let v13: MacOSVersion = .init(string: "13.0")
    |                           |- warning: static property 'v13' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v13' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
369 |
370 |         /// The value that represents macOS 14.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:374:27: warning: static property 'v14' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
296 |
297 |     /// The supported macOS version.
298 |     public struct MacOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacOSVersion' conform to the 'Sendable' protocol
299 |         fileprivate static let name = "macOS"
300 |         fileprivate static let minimumMajorVersion = 10
    :
372 |         /// - Since: First available in PackageDescription 5.9.
373 |         @available(_PackageDescription, introduced: 5.9)
374 |         public static let v14: MacOSVersion = .init(string: "14.0")
    |                           |- warning: static property 'v14' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v14' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
375 |     }
376 |
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:393:27: warning: static property 'v9' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
376 |
377 |     /// The supported tvOS version.
378 |     public struct TVOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'TVOSVersion' conform to the 'Sendable' protocol
379 |         fileprivate static let name = "tvOS"
380 |         fileprivate static let minimumMajorVersion = 9
    :
391 |         /// - Since: First available in PackageDescription 5.0.
392 |         @available(_PackageDescription, introduced: 5.0, deprecated: 5.7, message: "tvOS 11.0 is the oldest supported version")
393 |         public static let v9: TVOSVersion = .init(string: "9.0")
    |                           |- warning: static property 'v9' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v9' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
394 |
395 |         /// The value that represents tvOS 10.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:399:27: warning: static property 'v10' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
376 |
377 |     /// The supported tvOS version.
378 |     public struct TVOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'TVOSVersion' conform to the 'Sendable' protocol
379 |         fileprivate static let name = "tvOS"
380 |         fileprivate static let minimumMajorVersion = 9
    :
397 |         /// - Since: First available in PackageDescription 5.0.
398 |         @available(_PackageDescription, introduced: 5.0, deprecated: 5.7, message: "tvOS 11.0 is the oldest supported version")
399 |         public static let v10: TVOSVersion = .init(string: "10.0")
    |                           |- warning: static property 'v10' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v10' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
400 |
401 |         /// The value that represents tvOS 11.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:405:27: warning: static property 'v11' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
376 |
377 |     /// The supported tvOS version.
378 |     public struct TVOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'TVOSVersion' conform to the 'Sendable' protocol
379 |         fileprivate static let name = "tvOS"
380 |         fileprivate static let minimumMajorVersion = 9
    :
403 |         /// - Since: First available in PackageDescription 5.0.
404 |         @available(_PackageDescription, introduced: 5.0)
405 |         public static let v11: TVOSVersion = .init(string: "11.0")
    |                           |- warning: static property 'v11' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v11' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
406 |
407 |         /// The value that represents tvOS 12.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:411:27: warning: static property 'v12' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
376 |
377 |     /// The supported tvOS version.
378 |     public struct TVOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'TVOSVersion' conform to the 'Sendable' protocol
379 |         fileprivate static let name = "tvOS"
380 |         fileprivate static let minimumMajorVersion = 9
    :
409 |         /// - Since: First available in PackageDescription 5.0.
410 |         @available(_PackageDescription, introduced: 5.0)
411 |         public static let v12: TVOSVersion = .init(string: "12.0")
    |                           |- warning: static property 'v12' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v12' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
412 |
413 |         /// The value that represents tvOS 13.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:417:27: warning: static property 'v13' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
376 |
377 |     /// The supported tvOS version.
378 |     public struct TVOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'TVOSVersion' conform to the 'Sendable' protocol
379 |         fileprivate static let name = "tvOS"
380 |         fileprivate static let minimumMajorVersion = 9
    :
415 |         /// - Since: First available in PackageDescription 5.1.
416 |         @available(_PackageDescription, introduced: 5.1)
417 |         public static let v13: TVOSVersion = .init(string: "13.0")
    |                           |- warning: static property 'v13' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v13' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
418 |
419 |         /// The value that represents tvOS 14.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:423:27: warning: static property 'v14' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
376 |
377 |     /// The supported tvOS version.
378 |     public struct TVOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'TVOSVersion' conform to the 'Sendable' protocol
379 |         fileprivate static let name = "tvOS"
380 |         fileprivate static let minimumMajorVersion = 9
    :
421 |         /// - Since: First available in PackageDescription 5.3.
422 |         @available(_PackageDescription, introduced: 5.3)
423 |         public static let v14: TVOSVersion = .init(string: "14.0")
    |                           |- warning: static property 'v14' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v14' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
424 |
425 |         /// The value that represents tvOS 15.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:429:27: warning: static property 'v15' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
376 |
377 |     /// The supported tvOS version.
378 |     public struct TVOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'TVOSVersion' conform to the 'Sendable' protocol
379 |         fileprivate static let name = "tvOS"
380 |         fileprivate static let minimumMajorVersion = 9
    :
427 |         /// - Since: First available in PackageDescription 5.5.
428 |         @available(_PackageDescription, introduced: 5.5)
429 |         public static let v15: TVOSVersion = .init(string: "15.0")
    |                           |- warning: static property 'v15' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v15' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
430 |
431 |         /// The value that represents tvOS 16.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:435:27: warning: static property 'v16' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
376 |
377 |     /// The supported tvOS version.
378 |     public struct TVOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'TVOSVersion' conform to the 'Sendable' protocol
379 |         fileprivate static let name = "tvOS"
380 |         fileprivate static let minimumMajorVersion = 9
    :
433 |         /// - Since: First available in PackageDescription 5.7.
434 |         @available(_PackageDescription, introduced: 5.7)
435 |         public static let v16: TVOSVersion = .init(string: "16.0")
    |                           |- warning: static property 'v16' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v16' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
436 |
437 |         /// The value that represents tvOS 17.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:441:27: warning: static property 'v17' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
376 |
377 |     /// The supported tvOS version.
378 |     public struct TVOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'TVOSVersion' conform to the 'Sendable' protocol
379 |         fileprivate static let name = "tvOS"
380 |         fileprivate static let minimumMajorVersion = 9
    :
439 |         /// - Since: First available in PackageDescription 5.9.
440 |         @available(_PackageDescription, introduced: 5.9)
441 |         public static let v17: TVOSVersion = .init(string: "17.0")
    |                           |- warning: static property 'v17' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v17' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
442 |     }
443 |
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:460:27: warning: static property 'v13' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacCatalystVersion' may have shared mutable state; this is an error in the Swift 6 language mode
443 |
444 |     /// The supported Mac Catalyst version.
445 |     public struct MacCatalystVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacCatalystVersion' conform to the 'Sendable' protocol
446 |         fileprivate static let name = "macCatalyst"
447 |         fileprivate static let minimumMajorVersion = 13
    :
458 |         /// - Since: First available in PackageDescription 5.5.
459 |         @available(_PackageDescription, introduced: 5.5)
460 |         public static let v13: MacCatalystVersion = .init(string: "13.0")
    |                           |- warning: static property 'v13' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacCatalystVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v13' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
461 |
462 |         /// The value that represents Mac Catalyst 14.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:466:27: warning: static property 'v14' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacCatalystVersion' may have shared mutable state; this is an error in the Swift 6 language mode
443 |
444 |     /// The supported Mac Catalyst version.
445 |     public struct MacCatalystVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacCatalystVersion' conform to the 'Sendable' protocol
446 |         fileprivate static let name = "macCatalyst"
447 |         fileprivate static let minimumMajorVersion = 13
    :
464 |         /// - Since: First available in PackageDescription 5.5.
465 |         @available(_PackageDescription, introduced: 5.5)
466 |         public static let v14: MacCatalystVersion = .init(string: "14.0")
    |                           |- warning: static property 'v14' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacCatalystVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v14' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
467 |
468 |         /// The value that represents Mac Catalyst 15.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:472:27: warning: static property 'v15' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacCatalystVersion' may have shared mutable state; this is an error in the Swift 6 language mode
443 |
444 |     /// The supported Mac Catalyst version.
445 |     public struct MacCatalystVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacCatalystVersion' conform to the 'Sendable' protocol
446 |         fileprivate static let name = "macCatalyst"
447 |         fileprivate static let minimumMajorVersion = 13
    :
470 |         /// - Since: First available in PackageDescription 5.5.
471 |         @available(_PackageDescription, introduced: 5.5)
472 |         public static let v15: MacCatalystVersion = .init(string: "15.0")
    |                           |- warning: static property 'v15' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacCatalystVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v15' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
473 |
474 |         /// The value that represents Mac Catalyst 16.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:478:27: warning: static property 'v16' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacCatalystVersion' may have shared mutable state; this is an error in the Swift 6 language mode
443 |
444 |     /// The supported Mac Catalyst version.
445 |     public struct MacCatalystVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacCatalystVersion' conform to the 'Sendable' protocol
446 |         fileprivate static let name = "macCatalyst"
447 |         fileprivate static let minimumMajorVersion = 13
    :
476 |         /// - Since: First available in PackageDescription 5.7.
477 |         @available(_PackageDescription, introduced: 5.7)
478 |         public static let v16: MacCatalystVersion = .init(string: "16.0")
    |                           |- warning: static property 'v16' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacCatalystVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v16' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
479 |
480 |         /// The value that represents Mac Catalyst 17.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:484:27: warning: static property 'v17' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacCatalystVersion' may have shared mutable state; this is an error in the Swift 6 language mode
443 |
444 |     /// The supported Mac Catalyst version.
445 |     public struct MacCatalystVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacCatalystVersion' conform to the 'Sendable' protocol
446 |         fileprivate static let name = "macCatalyst"
447 |         fileprivate static let minimumMajorVersion = 13
    :
482 |         /// - Since: First available in PackageDescription 5.9.
483 |         @available(_PackageDescription, introduced: 5.9)
484 |         public static let v17: MacCatalystVersion = .init(string: "17.0")
    |                           |- warning: static property 'v17' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacCatalystVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v17' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
485 |     }
486 |
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:503:27: warning: static property 'v8' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
486 |
487 |     /// The supported iOS version.
488 |     public struct IOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'IOSVersion' conform to the 'Sendable' protocol
489 |         fileprivate static let name = "iOS"
490 |         fileprivate static let minimumMajorVersion = 2
    :
501 |         /// - Since: First available in PackageDescription 5.0.
502 |         @available(_PackageDescription, introduced: 5.0, deprecated: 5.7, message: "iOS 11.0 is the oldest supported version")
503 |         public static let v8: IOSVersion = .init(string: "8.0")
    |                           |- warning: static property 'v8' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v8' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
504 |
505 |         /// The value that represents iOS 9.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:509:27: warning: static property 'v9' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
486 |
487 |     /// The supported iOS version.
488 |     public struct IOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'IOSVersion' conform to the 'Sendable' protocol
489 |         fileprivate static let name = "iOS"
490 |         fileprivate static let minimumMajorVersion = 2
    :
507 |         /// - Since: First available in PackageDescription 5.0.
508 |         @available(_PackageDescription, introduced: 5.0, deprecated: 5.7, message: "iOS 11.0 is the oldest supported version")
509 |         public static let v9: IOSVersion = .init(string: "9.0")
    |                           |- warning: static property 'v9' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v9' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
510 |
511 |         /// The value that represents iOS 10.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:515:27: warning: static property 'v10' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
486 |
487 |     /// The supported iOS version.
488 |     public struct IOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'IOSVersion' conform to the 'Sendable' protocol
489 |         fileprivate static let name = "iOS"
490 |         fileprivate static let minimumMajorVersion = 2
    :
513 |         /// - Since: First available in PackageDescription 5.0.
514 |         @available(_PackageDescription, introduced: 5.0, deprecated: 5.7, message: "iOS 11.0 is the oldest supported version")
515 |         public static let v10: IOSVersion = .init(string: "10.0")
    |                           |- warning: static property 'v10' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v10' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
516 |
517 |         /// The value that represents iOS 11.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:521:27: warning: static property 'v11' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
486 |
487 |     /// The supported iOS version.
488 |     public struct IOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'IOSVersion' conform to the 'Sendable' protocol
489 |         fileprivate static let name = "iOS"
490 |         fileprivate static let minimumMajorVersion = 2
    :
519 |         /// - Since: First available in PackageDescription 5.0.
520 |         @available(_PackageDescription, introduced: 5.0)
521 |         public static let v11: IOSVersion = .init(string: "11.0")
    |                           |- warning: static property 'v11' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v11' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
522 |
523 |         /// The value that represents iOS 12.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:527:27: warning: static property 'v12' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
486 |
487 |     /// The supported iOS version.
488 |     public struct IOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'IOSVersion' conform to the 'Sendable' protocol
489 |         fileprivate static let name = "iOS"
490 |         fileprivate static let minimumMajorVersion = 2
    :
525 |         /// - Since: First available in PackageDescription 5.0.
526 |         @available(_PackageDescription, introduced: 5.0)
527 |         public static let v12: IOSVersion = .init(string: "12.0")
    |                           |- warning: static property 'v12' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v12' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
528 |
529 |         /// The value that represents iOS 13.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:533:27: warning: static property 'v13' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
486 |
487 |     /// The supported iOS version.
488 |     public struct IOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'IOSVersion' conform to the 'Sendable' protocol
489 |         fileprivate static let name = "iOS"
490 |         fileprivate static let minimumMajorVersion = 2
    :
531 |         /// - Since: First available in PackageDescription 5.1.
532 |         @available(_PackageDescription, introduced: 5.1)
533 |         public static let v13: IOSVersion = .init(string: "13.0")
    |                           |- warning: static property 'v13' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v13' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
534 |
535 |         /// The value that represents iOS 14.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:539:27: warning: static property 'v14' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
486 |
487 |     /// The supported iOS version.
488 |     public struct IOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'IOSVersion' conform to the 'Sendable' protocol
489 |         fileprivate static let name = "iOS"
490 |         fileprivate static let minimumMajorVersion = 2
    :
537 |         /// - Since: First available in PackageDescription 5.3.
538 |         @available(_PackageDescription, introduced: 5.3)
539 |         public static let v14: IOSVersion = .init(string: "14.0")
    |                           |- warning: static property 'v14' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v14' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
540 |
541 |         /// The value that represents iOS 15.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:545:27: warning: static property 'v15' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
486 |
487 |     /// The supported iOS version.
488 |     public struct IOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'IOSVersion' conform to the 'Sendable' protocol
489 |         fileprivate static let name = "iOS"
490 |         fileprivate static let minimumMajorVersion = 2
    :
543 |         /// - Since: First available in PackageDescription 5.5.
544 |         @available(_PackageDescription, introduced: 5.5)
545 |         public static let v15: IOSVersion = .init(string: "15.0")
    |                           |- warning: static property 'v15' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v15' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
546 |
547 |         /// The value that represents iOS 16.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:551:27: warning: static property 'v16' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
486 |
487 |     /// The supported iOS version.
488 |     public struct IOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'IOSVersion' conform to the 'Sendable' protocol
489 |         fileprivate static let name = "iOS"
490 |         fileprivate static let minimumMajorVersion = 2
    :
549 |         /// - Since: First available in PackageDescription 5.7.
550 |         @available(_PackageDescription, introduced: 5.7)
551 |         public static let v16: IOSVersion = .init(string: "16.0")
    |                           |- warning: static property 'v16' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v16' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
552 |
553 |         /// The value that represents iOS 17.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:557:27: warning: static property 'v17' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
486 |
487 |     /// The supported iOS version.
488 |     public struct IOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'IOSVersion' conform to the 'Sendable' protocol
489 |         fileprivate static let name = "iOS"
490 |         fileprivate static let minimumMajorVersion = 2
    :
555 |         /// - Since: First available in PackageDescription 5.9.
556 |         @available(_PackageDescription, introduced: 5.9)
557 |         public static let v17: IOSVersion = .init(string: "17.0")
    |                           |- warning: static property 'v17' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v17' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
558 |     }
559 |
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:576:27: warning: static property 'v2' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
559 |
560 |     /// The supported watchOS version.
561 |     public struct WatchOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'WatchOSVersion' conform to the 'Sendable' protocol
562 |         fileprivate static let name = "watchOS"
563 |         fileprivate static let minimumMajorVersion = 2
    :
574 |         /// - Since: First available in PackageDescription 5.0.
575 |         @available(_PackageDescription, introduced: 5.0, deprecated: 5.7, message: "watchOS 4.0 is the oldest supported version")
576 |         public static let v2: WatchOSVersion = .init(string: "2.0")
    |                           |- warning: static property 'v2' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v2' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
577 |
578 |         /// The value that represents watchOS 3.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:582:27: warning: static property 'v3' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
559 |
560 |     /// The supported watchOS version.
561 |     public struct WatchOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'WatchOSVersion' conform to the 'Sendable' protocol
562 |         fileprivate static let name = "watchOS"
563 |         fileprivate static let minimumMajorVersion = 2
    :
580 |         /// - Since: First available in PackageDescription 5.0.
581 |         @available(_PackageDescription, introduced: 5.0, deprecated: 5.7, message: "watchOS 4.0 is the oldest supported version")
582 |         public static let v3: WatchOSVersion = .init(string: "3.0")
    |                           |- warning: static property 'v3' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v3' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
583 |
584 |         /// The value that represents watchOS 4.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:588:27: warning: static property 'v4' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
559 |
560 |     /// The supported watchOS version.
561 |     public struct WatchOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'WatchOSVersion' conform to the 'Sendable' protocol
562 |         fileprivate static let name = "watchOS"
563 |         fileprivate static let minimumMajorVersion = 2
    :
586 |         /// - Since: First available in PackageDescription 5.0.
587 |         @available(_PackageDescription, introduced: 5.0)
588 |         public static let v4: WatchOSVersion = .init(string: "4.0")
    |                           |- warning: static property 'v4' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v4' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
589 |
590 |         /// The value that represents watchOS 5.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:594:27: warning: static property 'v5' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
559 |
560 |     /// The supported watchOS version.
561 |     public struct WatchOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'WatchOSVersion' conform to the 'Sendable' protocol
562 |         fileprivate static let name = "watchOS"
563 |         fileprivate static let minimumMajorVersion = 2
    :
592 |         /// - Since: First available in PackageDescription 5.0.
593 |         @available(_PackageDescription, introduced: 5.0)
594 |         public static let v5: WatchOSVersion = .init(string: "5.0")
    |                           |- warning: static property 'v5' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v5' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
595 |
596 |         /// The value that represents watchOS 6.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:600:27: warning: static property 'v6' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
559 |
560 |     /// The supported watchOS version.
561 |     public struct WatchOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'WatchOSVersion' conform to the 'Sendable' protocol
562 |         fileprivate static let name = "watchOS"
563 |         fileprivate static let minimumMajorVersion = 2
    :
598 |         /// - Since: First available in PackageDescription 5.1.
599 |         @available(_PackageDescription, introduced: 5.1)
600 |         public static let v6: WatchOSVersion = .init(string: "6.0")
    |                           |- warning: static property 'v6' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v6' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
601 |
602 |         /// The value that represents watchOS 7.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:606:27: warning: static property 'v7' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
559 |
560 |     /// The supported watchOS version.
561 |     public struct WatchOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'WatchOSVersion' conform to the 'Sendable' protocol
562 |         fileprivate static let name = "watchOS"
563 |         fileprivate static let minimumMajorVersion = 2
    :
604 |         /// - Since: First available in PackageDescription 5.3.
605 |         @available(_PackageDescription, introduced: 5.3)
606 |         public static let v7: WatchOSVersion = .init(string: "7.0")
    |                           |- warning: static property 'v7' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v7' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
607 |
608 |         /// The value that represents watchOS 8.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:612:27: warning: static property 'v8' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
559 |
560 |     /// The supported watchOS version.
561 |     public struct WatchOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'WatchOSVersion' conform to the 'Sendable' protocol
562 |         fileprivate static let name = "watchOS"
563 |         fileprivate static let minimumMajorVersion = 2
    :
610 |         /// - Since: First available in PackageDescription 5.5.
611 |         @available(_PackageDescription, introduced: 5.5)
612 |         public static let v8: WatchOSVersion = .init(string: "8.0")
    |                           |- warning: static property 'v8' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v8' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
613 |
614 |         /// The value that represents watchOS 9.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:618:27: warning: static property 'v9' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
559 |
560 |     /// The supported watchOS version.
561 |     public struct WatchOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'WatchOSVersion' conform to the 'Sendable' protocol
562 |         fileprivate static let name = "watchOS"
563 |         fileprivate static let minimumMajorVersion = 2
    :
616 |         /// - Since: First available in PackageDescription 5.7.
617 |         @available(_PackageDescription, introduced: 5.7)
618 |         public static let v9: WatchOSVersion = .init(string: "9.0")
    |                           |- warning: static property 'v9' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v9' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
619 |
620 |         /// The value that represents watchOS 10.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:624:27: warning: static property 'v10' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
559 |
560 |     /// The supported watchOS version.
561 |     public struct WatchOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'WatchOSVersion' conform to the 'Sendable' protocol
562 |         fileprivate static let name = "watchOS"
563 |         fileprivate static let minimumMajorVersion = 2
    :
622 |         /// - Since: First available in PackageDescription 5.9.
623 |         @available(_PackageDescription, introduced: 5.9)
624 |         public static let v10: WatchOSVersion = .init(string: "10.0")
    |                           |- warning: static property 'v10' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v10' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
625 |     }
626 |
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:643:27: warning: static property 'v1' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.VisionOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
626 |
627 |     /// The supported visionOS version.
628 |     public struct VisionOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'VisionOSVersion' conform to the 'Sendable' protocol
629 |         fileprivate static let name = "visionOS"
630 |         fileprivate static let minimumMajorVersion = 1
    :
641 |         /// - Since: First available in PackageDescription 5.9.
642 |         @available(_PackageDescription, introduced: 5.9)
643 |         public static let v1: VisionOSVersion = .init(string: "1.0")
    |                           |- warning: static property 'v1' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.VisionOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v1' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
644 |     }
645 |
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:662:27: warning: static property 'v19' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.DriverKitVersion' may have shared mutable state; this is an error in the Swift 6 language mode
645 |
646 |     /// The supported DriverKit version.
647 |     public struct DriverKitVersion: AppleOSVersion {
    |                   `- note: consider making struct 'DriverKitVersion' conform to the 'Sendable' protocol
648 |         fileprivate static let name = "DriverKit"
649 |         fileprivate static let minimumMajorVersion = 19
    :
660 |         /// - Since: First available in PackageDescription 5.5.
661 |         @available(_PackageDescription, introduced: 5.5)
662 |         public static let v19: DriverKitVersion = .init(string: "19.0")
    |                           |- warning: static property 'v19' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.DriverKitVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v19' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
663 |
664 |         /// The value that represents DriverKit 20.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:668:27: warning: static property 'v20' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.DriverKitVersion' may have shared mutable state; this is an error in the Swift 6 language mode
645 |
646 |     /// The supported DriverKit version.
647 |     public struct DriverKitVersion: AppleOSVersion {
    |                   `- note: consider making struct 'DriverKitVersion' conform to the 'Sendable' protocol
648 |         fileprivate static let name = "DriverKit"
649 |         fileprivate static let minimumMajorVersion = 19
    :
666 |         /// - Since: First available in PackageDescription 5.5.
667 |         @available(_PackageDescription, introduced: 5.5)
668 |         public static let v20: DriverKitVersion = .init(string: "20.0")
    |                           |- warning: static property 'v20' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.DriverKitVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v20' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
669 |
670 |         /// The value that represents DriverKit 21.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:674:27: warning: static property 'v21' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.DriverKitVersion' may have shared mutable state; this is an error in the Swift 6 language mode
645 |
646 |     /// The supported DriverKit version.
647 |     public struct DriverKitVersion: AppleOSVersion {
    |                   `- note: consider making struct 'DriverKitVersion' conform to the 'Sendable' protocol
648 |         fileprivate static let name = "DriverKit"
649 |         fileprivate static let minimumMajorVersion = 19
    :
672 |         /// - Since: First available in PackageDescription 5.5.
673 |         @available(_PackageDescription, introduced: 5.5)
674 |         public static let v21: DriverKitVersion = .init(string: "21.0")
    |                           |- warning: static property 'v21' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.DriverKitVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v21' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
675 |
676 |         /// The value that represents DriverKit 22.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:680:27: warning: static property 'v22' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.DriverKitVersion' may have shared mutable state; this is an error in the Swift 6 language mode
645 |
646 |     /// The supported DriverKit version.
647 |     public struct DriverKitVersion: AppleOSVersion {
    |                   `- note: consider making struct 'DriverKitVersion' conform to the 'Sendable' protocol
648 |         fileprivate static let name = "DriverKit"
649 |         fileprivate static let minimumMajorVersion = 19
    :
678 |         /// - Since: First available in PackageDescription 5.7.
679 |         @available(_PackageDescription, introduced: 5.7)
680 |         public static let v22: DriverKitVersion = .init(string: "22.0")
    |                           |- warning: static property 'v22' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.DriverKitVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v22' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
681 |
682 |         /// The value that represents DriverKit 23.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:686:27: warning: static property 'v23' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.DriverKitVersion' may have shared mutable state; this is an error in the Swift 6 language mode
645 |
646 |     /// The supported DriverKit version.
647 |     public struct DriverKitVersion: AppleOSVersion {
    |                   `- note: consider making struct 'DriverKitVersion' conform to the 'Sendable' protocol
648 |         fileprivate static let name = "DriverKit"
649 |         fileprivate static let minimumMajorVersion = 19
    :
684 |         /// - Since: First available in PackageDescription 5.9.
685 |         @available(_PackageDescription, introduced: 5.9)
686 |         public static let v23: DriverKitVersion = .init(string: "23.0")
    |                           |- warning: static property 'v23' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.DriverKitVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v23' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
687 |     }
688 |
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:692:20: warning: static property 'name' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
690 |     public struct CustomPlatformVersion: AppleOSVersion {
691 |         /// The name of the custom platform.
692 |         static var name: String = "custom platform"
    |                    |- warning: static property 'name' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'name' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'name' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
693 |         /// The minimum valid major version number.
694 |         static var minimumMajorVersion = 0
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:694:20: warning: static property 'minimumMajorVersion' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
692 |         static var name: String = "custom platform"
693 |         /// The minimum valid major version number.
694 |         static var minimumMajorVersion = 0
    |                    |- warning: static property 'minimumMajorVersion' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'minimumMajorVersion' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'minimumMajorVersion' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
695 |
696 |         fileprivate init(uncheckedVersion version: String) {
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/PackageDescription.swift:448:5: warning: var 'errors' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
446 | }
447 |
448 | var errors: [String] = []
    |     |- warning: var 'errors' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'errors' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'errors' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
449 |
450 | #if os(Windows)
[279/952] Compiling PackageDescription Target.swift
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/Target.swift:13:22: warning: '@_implementationOnly' is deprecated, use 'internal import' instead
  11 | //===----------------------------------------------------------------------===//
  12 |
  13 | @_implementationOnly import Foundation
     |                      `- warning: '@_implementationOnly' is deprecated, use 'internal import' instead
  14 |
  15 | /// The basic building block of a Swift package.
[280/952] Compiling PackageDescription Resource.swift
[283/953] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[284/953] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSuperset.swift
[285/953] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[286/953] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[287/953] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[288/953] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[289/953] Compiling OrderedCollections OrderedSet+Codable.swift
[290/953] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[291/953] Compiling OrderedCollections OrderedSet+Descriptions.swift
[292/953] Compiling OrderedCollections OrderedSet+Diffing.swift
[293/953] Compiling OrderedCollections OrderedSet+Equatable.swift
[294/953] Compiling OrderedCollections OrderedSet+ExpressibleByArrayLiteral.swift
[295/953] Compiling OrderedCollections OrderedDictionary+Elements.swift
[296/953] Compiling OrderedCollections OrderedDictionary+Equatable.swift
[297/953] Compiling OrderedCollections OrderedDictionary+ExpressibleByDictionaryLiteral.swift
[298/953] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[299/953] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[300/953] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[301/953] Compiling OrderedCollections _Hashtable+Header.swift
[302/953] Compiling OrderedCollections OrderedDictionary+Codable.swift
[303/953] Compiling OrderedCollections OrderedDictionary+CustomReflectable.swift
[304/953] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[305/953] Compiling OrderedCollections OrderedDictionary+Descriptions.swift
[306/953] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.swift
[307/953] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[308/953] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[309/953] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[310/953] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[311/953] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[312/953] Compiling OrderedCollections OrderedSet+Sendable.swift
[313/953] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
[314/953] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
[315/953] Compiling OrderedCollections OrderedDictionary+Sendable.swift
[316/953] Compiling OrderedCollections OrderedDictionary+Sequence.swift
[317/953] Compiling OrderedCollections OrderedDictionary+Values.swift
[318/953] Compiling OrderedCollections OrderedDictionary.swift
[319/953] Compiling SwiftASN1 Errors.swift
[319/953] Compiling fiat_curve25519_adx_square.S
[320/953] Compiling fiat_curve25519_adx_mul.S
[322/953] Emitting module TSCBasic
[322/957] Compiling v3_utl.c
[323/957] Compiling v3_skey.c
[325/957] Compiling PackageDescription Version.swift
[325/957] Compiling v3_purp.c
[326/957] Compiling v3_prn.c
[327/957] Compiling v3_pmaps.c
[328/957] Compiling v3_pcons.c
[329/957] Compiling v3_ocsp.c
[330/957] Compiling v3_ncons.c
[332/957] Compiling OrderedCollections OrderedSet+SubSequence.swift
[333/957] Compiling OrderedCollections OrderedSet+Testing.swift
[334/957] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[335/957] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[336/957] Compiling OrderedCollections OrderedSet.swift
[337/957] Compiling OrderedCollections _UnsafeBitset.swift
[337/957] Compiling v3_lib.c
[338/957] Compiling v3_int.c
[339/957] Compiling v3_info.c
[340/957] Compiling v3_ia5.c
[342/957] Emitting module DequeModule
[342/957] Compiling v3_genn.c
[343/957] Compiling v3_extku.c
[344/957] Compiling v3_enum.c
[345/957] Compiling v3_crld.c
[346/957] Compiling v3_cpols.c
[347/957] Compiling v3_conf.c
[348/957] Compiling v3_bitst.c
[349/957] Compiling v3_bcons.c
[350/957] Compiling v3_alt.c
[356/957] Compiling v3_akeya.c
[357/957] Compiling v3_akey.c
[358/957] Compiling x_x509a.c
[359/957] Compiling x_x509.c
[360/957] Compiling x_val.c
[361/957] Compiling x_spki.c
[362/957] Compiling x_sig.c
[363/957] Compiling x_req.c
[364/957] Compiling x_pubkey.c
[365/957] Compiling x_pkey.c
[366/957] Compiling x_name.c
[367/957] Compiling x_info.c
[368/957] Compiling x_exten.c
[369/957] Compiling x_attrib.c
[370/957] Compiling x_crl.c
[371/957] Compiling x_algor.c
[372/957] Compiling x_all.c
[373/957] Compiling x509spki.c
[383/957] Compiling x509rset.c
[384/957] Compiling x509name.c
[385/957] Compiling x509cset.c
[386/957] Compiling x509_vpm.c
[387/957] Compiling x509_vfy.c
[388/957] Compiling x509_v3.c
[389/957] Compiling x509_txt.c
[390/957] Compiling x509_trs.c
[391/957] Compiling x509_set.c
[392/957] Compiling x509_req.c
[393/957] Compiling x509_obj.c
[394/957] Compiling x509_lu.c
[396/957] Compiling PackagePlugin PluginContextDeserializer.swift
[397/957] Compiling PackagePlugin PluginMessages.swift
[398/957] Compiling PackagePlugin Plugin.swift
/Users/admin/builder/spi-builder-workspace/Sources/PackagePlugin/Plugin.swift:303:31: warning: var 'pluginHostConnection' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
301 |
302 | /// Message channel for bidirectional communication with the plugin host.
303 | internal fileprivate(set) var pluginHostConnection: PluginHostConnection!
    |                               |- warning: var 'pluginHostConnection' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                               |- note: convert 'pluginHostConnection' to a 'let' constant to make 'Sendable' shared state immutable
    |                               |- note: annotate 'pluginHostConnection' with '@MainActor' if property should only be accessed from the main actor
    |                               `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
304 |
305 | typealias PluginHostConnection = MessageConnection<PluginToHostMessage, HostToPluginMessage>
[398/957] Compiling x509_ext.c
[399/957] Compiling x509_def.c
[400/957] Compiling x509_d2.c
[401/957] Compiling x509_cmp.c
[402/957] Compiling x509_att.c
[403/957] Compiling x509.c
[404/957] Compiling t_x509a.c
[405/957] Compiling t_x509.c
[406/957] Compiling t_req.c
[407/957] Compiling t_crl.c
[409/957] Compiling TSCBasic Thread.swift
[410/957] Compiling TSCBasic Tuple.swift
[411/957] Compiling TSCBasic WritableByteStream.swift
[412/957] Compiling TSCBasic misc.swift
[412/957] Compiling rsa_pss.c
[422/957] Compiling name_print.c
[423/957] Compiling policy.c
[424/957] Compiling i2d_pr.c
[425/957] Compiling by_file.c
[427/957] Compiling llbuildSwift BuildDBBindings.swift
[428/957] Compiling llbuildSwift BuildSystemBindings.swift
[429/957] Compiling llbuildSwift BuildKey.swift
[430/957] Compiling llbuildSwift CoreBindings.swift
[431/957] Emitting module llbuildSwift
[432/957] Compiling PackageCollectionsModel PackageCollectionModel+v1.swift
[433/957] Compiling PackageCollectionsModel PackageCollectionModel.swift
[434/957] Emitting module PackageCollectionsModel
[434/957] Compiling asn1_gen.c
[435/957] Compiling algorithm.c
[437/957] Compiling PackagePlugin PackageModel.swift
[438/957] Compiling PackagePlugin Path.swift
[438/957] Compiling a_verify.c
[439/957] Compiling a_sign.c
[440/957] Compiling a_digest.c
/Users/admin/builder/spi-builder-workspace/Sources/PackagePlugin/Errors.swift:22:10: warning: associated value 'targetNotFound(name:package:)' of 'Sendable'-conforming enum 'PluginContextError' has non-sendable type 'Package'; this is an error in the Swift 6 language mode
20 |
21 |     /// Could not find a target with the given name.
22 |     case targetNotFound(name: String, package: Package)
   |          `- warning: associated value 'targetNotFound(name:package:)' of 'Sendable'-conforming enum 'PluginContextError' has non-sendable type 'Package'; this is an error in the Swift 6 language mode
23 |
24 |     /// Could not find a product with the given name.
/Users/admin/builder/spi-builder-workspace/Sources/PackagePlugin/PackageModel.swift:16:15: note: consider making struct 'Package' conform to the 'Sendable' protocol
 14 |
 15 | /// Represents a single package in the graph (either the root or a dependency).
 16 | public struct Package {
    |               `- note: consider making struct 'Package' conform to the 'Sendable' protocol
 17 |     /// Unique identifier for the package.
 18 |     public let id: ID
/Users/admin/builder/spi-builder-workspace/Sources/PackagePlugin/Errors.swift:25:10: warning: associated value 'productNotFound(name:package:)' of 'Sendable'-conforming enum 'PluginContextError' has non-sendable type 'Package'; this is an error in the Swift 6 language mode
23 |
24 |     /// Could not find a product with the given name.
25 |     case productNotFound(name: String, package: Package)
   |          `- warning: associated value 'productNotFound(name:package:)' of 'Sendable'-conforming enum 'PluginContextError' has non-sendable type 'Package'; this is an error in the Swift 6 language mode
26 | }
27 |
/Users/admin/builder/spi-builder-workspace/Sources/PackagePlugin/PackageModel.swift:16:15: note: consider making struct 'Package' conform to the 'Sendable' protocol
 14 |
 15 | /// Represents a single package in the graph (either the root or a dependency).
 16 | public struct Package {
    |               `- note: consider making struct 'Package' conform to the 'Sendable' protocol
 17 |     /// Unique identifier for the package.
 18 |     public let id: ID
/Users/admin/builder/spi-builder-workspace/Sources/PackagePlugin/Plugin.swift:303:31: warning: var 'pluginHostConnection' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
301 |
302 | /// Message channel for bidirectional communication with the plugin host.
303 | internal fileprivate(set) var pluginHostConnection: PluginHostConnection!
    |                               |- warning: var 'pluginHostConnection' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                               |- note: convert 'pluginHostConnection' to a 'let' constant to make 'Sendable' shared state immutable
    |                               |- note: annotate 'pluginHostConnection' with '@MainActor' if property should only be accessed from the main actor
    |                               `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
304 |
305 | typealias PluginHostConnection = MessageConnection<PluginToHostMessage, HostToPluginMessage>
/Users/admin/builder/spi-builder-workspace/Sources/PackagePlugin/Errors.swift:22:10: warning: associated value 'targetNotFound(name:package:)' of 'Sendable'-conforming enum 'PluginContextError' has non-sendable type 'Package'; this is an error in the Swift 6 language mode
20 |
21 |     /// Could not find a target with the given name.
22 |     case targetNotFound(name: String, package: Package)
   |          `- warning: associated value 'targetNotFound(name:package:)' of 'Sendable'-conforming enum 'PluginContextError' has non-sendable type 'Package'; this is an error in the Swift 6 language mode
23 |
24 |     /// Could not find a product with the given name.
/Users/admin/builder/spi-builder-workspace/Sources/PackagePlugin/PackageModel.swift:16:15: note: consider making struct 'Package' conform to the 'Sendable' protocol
 14 |
 15 | /// Represents a single package in the graph (either the root or a dependency).
 16 | public struct Package {
    |               `- note: consider making struct 'Package' conform to the 'Sendable' protocol
 17 |     /// Unique identifier for the package.
 18 |     public let id: ID
/Users/admin/builder/spi-builder-workspace/Sources/PackagePlugin/Errors.swift:25:10: warning: associated value 'productNotFound(name:package:)' of 'Sendable'-conforming enum 'PluginContextError' has non-sendable type 'Package'; this is an error in the Swift 6 language mode
23 |
24 |     /// Could not find a product with the given name.
25 |     case productNotFound(name: String, package: Package)
   |          `- warning: associated value 'productNotFound(name:package:)' of 'Sendable'-conforming enum 'PluginContextError' has non-sendable type 'Package'; this is an error in the Swift 6 language mode
26 | }
27 |
/Users/admin/builder/spi-builder-workspace/Sources/PackagePlugin/PackageModel.swift:16:15: note: consider making struct 'Package' conform to the 'Sendable' protocol
 14 |
 15 | /// Represents a single package in the graph (either the root or a dependency).
 16 | public struct Package {
    |               `- note: consider making struct 'Package' conform to the 'Sendable' protocol
 17 |     /// Unique identifier for the package.
 18 |     public let id: ID
/Users/admin/builder/spi-builder-workspace/Sources/PackagePlugin/Plugin.swift:303:31: warning: var 'pluginHostConnection' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
301 |
302 | /// Message channel for bidirectional communication with the plugin host.
303 | internal fileprivate(set) var pluginHostConnection: PluginHostConnection!
    |                               |- warning: var 'pluginHostConnection' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                               |- note: convert 'pluginHostConnection' to a 'let' constant to make 'Sendable' shared state immutable
    |                               |- note: annotate 'pluginHostConnection' with '@MainActor' if property should only be accessed from the main actor
    |                               `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
304 |
305 | typealias PluginHostConnection = MessageConnection<PluginToHostMessage, HostToPluginMessage>
/Users/admin/builder/spi-builder-workspace/Sources/PackagePlugin/Plugin.swift:303:31: warning: var 'pluginHostConnection' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
301 |
302 | /// Message channel for bidirectional communication with the plugin host.
303 | internal fileprivate(set) var pluginHostConnection: PluginHostConnection!
    |                               |- warning: var 'pluginHostConnection' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                               |- note: convert 'pluginHostConnection' to a 'let' constant to make 'Sendable' shared state immutable
    |                               |- note: annotate 'pluginHostConnection' with '@MainActor' if property should only be accessed from the main actor
    |                               `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
304 |
305 | typealias PluginHostConnection = MessageConnection<PluginToHostMessage, HostToPluginMessage>
/Users/admin/builder/spi-builder-workspace/Sources/PackagePlugin/Plugin.swift:303:31: warning: var 'pluginHostConnection' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
301 |
302 | /// Message channel for bidirectional communication with the plugin host.
303 | internal fileprivate(set) var pluginHostConnection: PluginHostConnection!
    |                               |- warning: var 'pluginHostConnection' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                               |- note: convert 'pluginHostConnection' to a 'let' constant to make 'Sendable' shared state immutable
    |                               |- note: annotate 'pluginHostConnection' with '@MainActor' if property should only be accessed from the main actor
    |                               `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
304 |
305 | typealias PluginHostConnection = MessageConnection<PluginToHostMessage, HostToPluginMessage>
[448/957] Emitting module PackagePlugin
/Users/admin/builder/spi-builder-workspace/Sources/PackagePlugin/Errors.swift:22:10: warning: associated value 'targetNotFound(name:package:)' of 'Sendable'-conforming enum 'PluginContextError' has non-sendable type 'Package'; this is an error in the Swift 6 language mode
20 |
21 |     /// Could not find a target with the given name.
22 |     case targetNotFound(name: String, package: Package)
   |          `- warning: associated value 'targetNotFound(name:package:)' of 'Sendable'-conforming enum 'PluginContextError' has non-sendable type 'Package'; this is an error in the Swift 6 language mode
23 |
24 |     /// Could not find a product with the given name.
/Users/admin/builder/spi-builder-workspace/Sources/PackagePlugin/PackageModel.swift:16:15: note: consider making struct 'Package' conform to the 'Sendable' protocol
 14 |
 15 | /// Represents a single package in the graph (either the root or a dependency).
 16 | public struct Package {
    |               `- note: consider making struct 'Package' conform to the 'Sendable' protocol
 17 |     /// Unique identifier for the package.
 18 |     public let id: ID
/Users/admin/builder/spi-builder-workspace/Sources/PackagePlugin/Errors.swift:25:10: warning: associated value 'productNotFound(name:package:)' of 'Sendable'-conforming enum 'PluginContextError' has non-sendable type 'Package'; this is an error in the Swift 6 language mode
23 |
24 |     /// Could not find a product with the given name.
25 |     case productNotFound(name: String, package: Package)
   |          `- warning: associated value 'productNotFound(name:package:)' of 'Sendable'-conforming enum 'PluginContextError' has non-sendable type 'Package'; this is an error in the Swift 6 language mode
26 | }
27 |
/Users/admin/builder/spi-builder-workspace/Sources/PackagePlugin/PackageModel.swift:16:15: note: consider making struct 'Package' conform to the 'Sendable' protocol
 14 |
 15 | /// Represents a single package in the graph (either the root or a dependency).
 16 | public struct Package {
    |               `- note: consider making struct 'Package' conform to the 'Sendable' protocol
 17 |     /// Unique identifier for the package.
 18 |     public let id: ID
/Users/admin/builder/spi-builder-workspace/Sources/PackagePlugin/Plugin.swift:303:31: warning: var 'pluginHostConnection' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
301 |
302 | /// Message channel for bidirectional communication with the plugin host.
303 | internal fileprivate(set) var pluginHostConnection: PluginHostConnection!
    |                               |- warning: var 'pluginHostConnection' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                               |- note: convert 'pluginHostConnection' to a 'let' constant to make 'Sendable' shared state immutable
    |                               |- note: annotate 'pluginHostConnection' with '@MainActor' if property should only be accessed from the main actor
    |                               `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
304 |
305 | typealias PluginHostConnection = MessageConnection<PluginToHostMessage, HostToPluginMessage>
[448/958] Compiling trust_token.c
[449/958] Compiling voprf.c
[450/958] Compiling pmbtoken.c
[452/958] Compiling Yams String+Yams.swift
[453/958] Compiling Yams Tag.swift
error: verify-emitted-module-interface command failed due to signal 11 (use -v to see invocation)
Please submit a bug report (https://swift.org/contributing/#reporting-bugs) and include the crash backtrace.
Stack dump:
0.	Program arguments: /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -typecheck-module-from-interface /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Modules/PackagePlugin.swiftinterface -target arm64-apple-macosx13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -I /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Modules -I /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-library-evolution -enable-testing -g -debug-info-format=dwarf -dwarf-version=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/ModuleCache -swift-version 5 -Onone -package-description-version 999.0 -D SWIFT_PACKAGE -D DEBUG -new-driver-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-driver -stats-output-dir .stats -strict-concurrency=complete -resource-dir /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace -Xcc -isysroot -Xcc /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk -Xcc -F -Xcc /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -Xcc -fPIC -Xcc -g -module-name PackagePlugin -package-name spi_builder_workspace -disable-clang-spi -target-sdk-version 15.0 -target-sdk-name macosx15.0 -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins#/Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.0.0-Release.Candidate.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins
1.	Apple Swift version 6.0 (swiftlang-6.0.0.9.10 clang-1600.0.26.2)
2.	Compiling with effective version 5.10
Stack dump without symbol names (ensure you have llvm-symbolizer in your PATH or set the environment var `LLVM_SYMBOLIZER_PATH` to point to it):
0  swift-frontend           0x00000001068a70fc llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) + 56
1  swift-frontend           0x00000001068a5350 llvm::sys::RunSignalHandlers() + 112
2  swift-frontend           0x00000001068a76c8 SignalHandler(int) + 292
3  libsystem_platform.dylib 0x000000018dd9b584 _sigtramp + 56
4  swift-frontend           0x0000000101620240 swift::CompilerInstance::setupStatsReporter() + 404
5  swift-frontend           0x000000010162118c swift::CompilerInstance::setup(swift::CompilerInvocation const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>>&, llvm::ArrayRef<char const*>) + 284
6  swift-frontend           0x00000001012529c8 swift::performFrontend(llvm::ArrayRef<char const*>, char const*, void*, swift::FrontendObserver*) + 2148
7  swift-frontend           0x00000001011da01c swift::mainEntry(int, char const**) + 3680
8  dyld                     0x000000018d9e20e0 start + 2360
[453/959] Compiling thread_none.c
[453/959] Compiling thread_win.c
[453/959] Compiling thread_pthread.c
[453/959] Compiling by_dir.c
[476/959] Compiling Crypto ChaChaPoly.swift
[477/959] Compiling Crypto Cipher.swift
[478/959] Compiling Crypto Nonces.swift
[479/959] Compiling Crypto ASN1.swift
[480/959] Compiling Crypto ASN1Any.swift
[481/959] Compiling Crypto ASN1BitString.swift
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/ContextModel.swift:14:22: warning: '@_implementationOnly' is deprecated, use 'internal import' instead
12 |
13 | #if USE_IMPL_ONLY_IMPORTS
14 | @_implementationOnly import Foundation
   |                      `- warning: '@_implementationOnly' is deprecated, use 'internal import' instead
15 | #else
16 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/ContextModel.swift:14:22: warning: '@_implementationOnly' is deprecated, use 'internal import' instead
12 |
13 | #if USE_IMPL_ONLY_IMPORTS
14 | @_implementationOnly import Foundation
   |                      `- warning: '@_implementationOnly' is deprecated, use 'internal import' instead
15 | #else
16 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/PackageDescription.swift:18:22: warning: '@_implementationOnly' is deprecated, use 'internal import' instead
 16 | @_implementationOnly import Musl
 17 | #elseif canImport(Darwin)
 18 | @_implementationOnly import Darwin.C
    |                      `- warning: '@_implementationOnly' is deprecated, use 'internal import' instead
 19 | #elseif canImport(ucrt) && canImport(WinSDK)
 20 | @_implementationOnly import ucrt
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/PackageDescription.swift:23:22: warning: '@_implementationOnly' is deprecated, use 'internal import' instead
 21 | @_implementationOnly import struct WinSDK.HANDLE
 22 | #endif
 23 | @_implementationOnly import Foundation
    |                      `- warning: '@_implementationOnly' is deprecated, use 'internal import' instead
 24 |
 25 | /// The configuration of a Swift package.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/PackageDescription.swift:448:5: warning: var 'errors' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
446 | }
447 |
448 | var errors: [String] = []
    |     |- warning: var 'errors' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'errors' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'errors' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
449 |
450 | #if os(Windows)
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/PackageDescription.swift:475:13: warning: var 'dumpInfo' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
473 | }
474 | #else
475 | private var dumpInfo: (package: Package, fileDesc: Int32)?
    |             |- warning: var 'dumpInfo' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'dumpInfo' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'dumpInfo' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
476 | private func dumpPackageAtExit(_ package: Package, to fileDesc: Int32) {
477 |     func dump() {
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/PackageDescription.swift:18:22: warning: '@_implementationOnly' is deprecated, use 'internal import' instead
 16 | @_implementationOnly import Musl
 17 | #elseif canImport(Darwin)
 18 | @_implementationOnly import Darwin.C
    |                      `- warning: '@_implementationOnly' is deprecated, use 'internal import' instead
 19 | #elseif canImport(ucrt) && canImport(WinSDK)
 20 | @_implementationOnly import ucrt
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/PackageDescription.swift:23:22: warning: '@_implementationOnly' is deprecated, use 'internal import' instead
 21 | @_implementationOnly import struct WinSDK.HANDLE
 22 | #endif
 23 | @_implementationOnly import Foundation
    |                      `- warning: '@_implementationOnly' is deprecated, use 'internal import' instead
 24 |
 25 | /// The configuration of a Swift package.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/PackageDescription.swift:448:5: warning: var 'errors' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
446 | }
447 |
448 | var errors: [String] = []
    |     |- warning: var 'errors' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'errors' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'errors' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
449 |
450 | #if os(Windows)
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/PackageDescription.swift:475:13: warning: var 'dumpInfo' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
473 | }
474 | #else
475 | private var dumpInfo: (package: Package, fileDesc: Int32)?
    |             |- warning: var 'dumpInfo' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'dumpInfo' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'dumpInfo' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
476 | private func dumpPackageAtExit(_ package: Package, to fileDesc: Int32) {
477 |     func dump() {
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/BuildSettings.swift:23:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | /// The build configuration, such as debug or release.
 14 | public struct BuildConfiguration {
    |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
 15 |     /// The configuration of the build. Valid values are `debug` and `release`.
 16 |     let config: String
    :
 21 |
 22 |     /// The debug build configuration.
 23 |     public static let debug: BuildConfiguration = BuildConfiguration("debug")
    |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |
 25 |     /// The release build configuration.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/BuildSettings.swift:26:23: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | /// The build configuration, such as debug or release.
 14 | public struct BuildConfiguration {
    |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
 15 |     /// The configuration of the build. Valid values are `debug` and `release`.
 16 |     let config: String
    :
 24 |
 25 |     /// The release build configuration.
 26 |     public static let release: BuildConfiguration = BuildConfiguration("release")
    |                       |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'release' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 | }
 28 |
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/BuildSettings.swift:23:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | /// The build configuration, such as debug or release.
 14 | public struct BuildConfiguration {
    |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
 15 |     /// The configuration of the build. Valid values are `debug` and `release`.
 16 |     let config: String
    :
 21 |
 22 |     /// The debug build configuration.
 23 |     public static let debug: BuildConfiguration = BuildConfiguration("debug")
    |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |
 25 |     /// The release build configuration.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/BuildSettings.swift:26:23: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | /// The build configuration, such as debug or release.
 14 | public struct BuildConfiguration {
    |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
 15 |     /// The configuration of the build. Valid values are `debug` and `release`.
 16 |     let config: String
    :
 24 |
 25 |     /// The release build configuration.
 26 |     public static let release: BuildConfiguration = BuildConfiguration("release")
    |                       |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'release' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 | }
 28 |
[488/959] Emitting module PackageDescription
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/ContextModel.swift:14:22: warning: '@_implementationOnly' is deprecated, use 'internal import' instead
12 |
13 | #if USE_IMPL_ONLY_IMPORTS
14 | @_implementationOnly import Foundation
   |                      `- warning: '@_implementationOnly' is deprecated, use 'internal import' instead
15 | #else
16 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/PackageDescription.swift:18:22: warning: '@_implementationOnly' is deprecated, use 'internal import' instead
 16 | @_implementationOnly import Musl
 17 | #elseif canImport(Darwin)
 18 | @_implementationOnly import Darwin.C
    |                      `- warning: '@_implementationOnly' is deprecated, use 'internal import' instead
 19 | #elseif canImport(ucrt) && canImport(WinSDK)
 20 | @_implementationOnly import ucrt
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/PackageDescription.swift:23:22: warning: '@_implementationOnly' is deprecated, use 'internal import' instead
 21 | @_implementationOnly import struct WinSDK.HANDLE
 22 | #endif
 23 | @_implementationOnly import Foundation
    |                      `- warning: '@_implementationOnly' is deprecated, use 'internal import' instead
 24 |
 25 | /// The configuration of a Swift package.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/PackageDescriptionSerialization.swift:14:22: warning: '@_implementationOnly' is deprecated, use 'internal import' instead
 12 |
 13 | #if USE_IMPL_ONLY_IMPORTS
 14 | @_implementationOnly import Foundation
    |                      `- warning: '@_implementationOnly' is deprecated, use 'internal import' instead
 15 | #else
 16 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/Target.swift:13:22: warning: '@_implementationOnly' is deprecated, use 'internal import' instead
  11 | //===----------------------------------------------------------------------===//
  12 |
  13 | @_implementationOnly import Foundation
     |                      `- warning: '@_implementationOnly' is deprecated, use 'internal import' instead
  14 |
  15 | /// The basic building block of a Swift package.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/BuildSettings.swift:23:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | /// The build configuration, such as debug or release.
 14 | public struct BuildConfiguration {
    |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
 15 |     /// The configuration of the build. Valid values are `debug` and `release`.
 16 |     let config: String
    :
 21 |
 22 |     /// The debug build configuration.
 23 |     public static let debug: BuildConfiguration = BuildConfiguration("debug")
    |                       |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'debug' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 24 |
 25 |     /// The release build configuration.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/BuildSettings.swift:26:23: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | /// The build configuration, such as debug or release.
 14 | public struct BuildConfiguration {
    |               `- note: consider making struct 'BuildConfiguration' conform to the 'Sendable' protocol
 15 |     /// The configuration of the build. Valid values are `debug` and `release`.
 16 |     let config: String
    :
 24 |
 25 |     /// The release build configuration.
 26 |     public static let release: BuildConfiguration = BuildConfiguration("release")
    |                       |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'BuildConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'release' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 | }
 28 |
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/PackageDescription.swift:448:5: warning: var 'errors' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
446 | }
447 |
448 | var errors: [String] = []
    |     |- warning: var 'errors' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: convert 'errors' to a 'let' constant to make 'Sendable' shared state immutable
    |     |- note: annotate 'errors' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
449 |
450 | #if os(Windows)
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/PackageDescription.swift:475:13: warning: var 'dumpInfo' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
473 | }
474 | #else
475 | private var dumpInfo: (package: Package, fileDesc: Int32)?
    |             |- warning: var 'dumpInfo' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'dumpInfo' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'dumpInfo' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
476 | private func dumpPackageAtExit(_ package: Package, to fileDesc: Int32) {
477 |     func dump() {
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:34:23: warning: static property 'macOS' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | /// A platform supported by Swift Package Manager.
 14 | public struct Platform: Equatable {
    |               `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
 15 |
 16 |     /// The name of the platform.
    :
 32 |
 33 |     /// The macOS platform.
 34 |     public static let macOS: Platform = Platform(name: "macos")
    |                       |- warning: static property 'macOS' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'macOS' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     /// The Mac Catalyst platform.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:37:23: warning: static property 'macCatalyst' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | /// A platform supported by Swift Package Manager.
 14 | public struct Platform: Equatable {
    |               `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
 15 |
 16 |     /// The name of the platform.
    :
 35 |
 36 |     /// The Mac Catalyst platform.
 37 |     public static let macCatalyst: Platform = Platform(name: "maccatalyst")
    |                       |- warning: static property 'macCatalyst' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'macCatalyst' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     /// The iOS platform.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:40:23: warning: static property 'iOS' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | /// A platform supported by Swift Package Manager.
 14 | public struct Platform: Equatable {
    |               `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
 15 |
 16 |     /// The name of the platform.
    :
 38 |
 39 |     /// The iOS platform.
 40 |     public static let iOS: Platform = Platform(name: "ios")
    |                       |- warning: static property 'iOS' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'iOS' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// The tvOS platform.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:43:23: warning: static property 'tvOS' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | /// A platform supported by Swift Package Manager.
 14 | public struct Platform: Equatable {
    |               `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
 15 |
 16 |     /// The name of the platform.
    :
 41 |
 42 |     /// The tvOS platform.
 43 |     public static let tvOS: Platform = Platform(name: "tvos")
    |                       |- warning: static property 'tvOS' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'tvOS' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// The watchOS platform.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:46:23: warning: static property 'watchOS' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | /// A platform supported by Swift Package Manager.
 14 | public struct Platform: Equatable {
    |               `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
 15 |
 16 |     /// The name of the platform.
    :
 44 |
 45 |     /// The watchOS platform.
 46 |     public static let watchOS: Platform = Platform(name: "watchos")
    |                       |- warning: static property 'watchOS' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'watchOS' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// The visionOS platform.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:49:23: warning: static property 'visionOS' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | /// A platform supported by Swift Package Manager.
 14 | public struct Platform: Equatable {
    |               `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
 15 |
 16 |     /// The name of the platform.
    :
 47 |
 48 |     /// The visionOS platform.
 49 |     public static let visionOS: Platform = Platform(name: "visionos")
    |                       |- warning: static property 'visionOS' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'visionOS' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// The DriverKit platform
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:52:23: warning: static property 'driverKit' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | /// A platform supported by Swift Package Manager.
 14 | public struct Platform: Equatable {
    |               `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
 15 |
 16 |     /// The name of the platform.
    :
 50 |
 51 |     /// The DriverKit platform
 52 |     public static let driverKit: Platform = Platform(name: "driverkit")
    |                       |- warning: static property 'driverKit' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'driverKit' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 |
 54 |     /// The Linux platform.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:55:23: warning: static property 'linux' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | /// A platform supported by Swift Package Manager.
 14 | public struct Platform: Equatable {
    |               `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
 15 |
 16 |     /// The name of the platform.
    :
 53 |
 54 |     /// The Linux platform.
 55 |     public static let linux: Platform = Platform(name: "linux")
    |                       |- warning: static property 'linux' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'linux' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |
 57 |     /// The Windows platform.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:59:23: warning: static property 'windows' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | /// A platform supported by Swift Package Manager.
 14 | public struct Platform: Equatable {
    |               `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
 15 |
 16 |     /// The name of the platform.
    :
 57 |     /// The Windows platform.
 58 |     @available(_PackageDescription, introduced: 5.2)
 59 |     public static let windows: Platform = Platform(name: "windows")
    |                       |- warning: static property 'windows' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'windows' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 60 |
 61 |     /// The Android platform.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:63:23: warning: static property 'android' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | /// A platform supported by Swift Package Manager.
 14 | public struct Platform: Equatable {
    |               `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
 15 |
 16 |     /// The name of the platform.
    :
 61 |     /// The Android platform.
 62 |     @available(_PackageDescription, introduced: 5.2)
 63 |     public static let android: Platform = Platform(name: "android")
    |                       |- warning: static property 'android' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'android' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 64 |
 65 |     /// The WebAssembly System Interface platform.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:67:23: warning: static property 'wasi' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | /// A platform supported by Swift Package Manager.
 14 | public struct Platform: Equatable {
    |               `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
 15 |
 16 |     /// The name of the platform.
    :
 65 |     /// The WebAssembly System Interface platform.
 66 |     @available(_PackageDescription, introduced: 5.3)
 67 |     public static let wasi: Platform = Platform(name: "wasi")
    |                       |- warning: static property 'wasi' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'wasi' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 68 |
 69 |     /// The OpenBSD platform.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:71:23: warning: static property 'openbsd' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |
 13 | /// A platform supported by Swift Package Manager.
 14 | public struct Platform: Equatable {
    |               `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
 15 |
 16 |     /// The name of the platform.
    :
 69 |     /// The OpenBSD platform.
 70 |     @available(_PackageDescription, introduced: 5.8)
 71 |     public static let openbsd: Platform = Platform(name: "openbsd")
    |                       |- warning: static property 'openbsd' is not concurrency-safe because non-'Sendable' type 'Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'openbsd' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 72 | }
 73 |
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:313:27: warning: static property 'v10_10' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
296 |
297 |     /// The supported macOS version.
298 |     public struct MacOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacOSVersion' conform to the 'Sendable' protocol
299 |         fileprivate static let name = "macOS"
300 |         fileprivate static let minimumMajorVersion = 10
    :
311 |         /// - Since: First available in PackageDescription 5.0.
312 |         @available(_PackageDescription, introduced: 5.0, deprecated: 5.7, message: "macOS 10.13 is the oldest supported version")
313 |         public static let v10_10: MacOSVersion = .init(string: "10.10")
    |                           |- warning: static property 'v10_10' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v10_10' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
314 |
315 |         /// The value that represents macOS 10.11.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:319:27: warning: static property 'v10_11' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
296 |
297 |     /// The supported macOS version.
298 |     public struct MacOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacOSVersion' conform to the 'Sendable' protocol
299 |         fileprivate static let name = "macOS"
300 |         fileprivate static let minimumMajorVersion = 10
    :
317 |         /// - Since: First available in PackageDescription 5.0.
318 |         @available(_PackageDescription, introduced: 5.0, deprecated: 5.7, message: "macOS 10.13 is the oldest supported version")
319 |         public static let v10_11: MacOSVersion = .init(string: "10.11")
    |                           |- warning: static property 'v10_11' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v10_11' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
320 |
321 |         /// The value that represents macOS 10.12.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:325:27: warning: static property 'v10_12' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
296 |
297 |     /// The supported macOS version.
298 |     public struct MacOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacOSVersion' conform to the 'Sendable' protocol
299 |         fileprivate static let name = "macOS"
300 |         fileprivate static let minimumMajorVersion = 10
    :
323 |         /// - Since: First available in PackageDescription 5.0.
324 |         @available(_PackageDescription, introduced: 5.0, deprecated: 5.7, message: "macOS 10.13 is the oldest supported version")
325 |         public static let v10_12: MacOSVersion = .init(string: "10.12")
    |                           |- warning: static property 'v10_12' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v10_12' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
326 |
327 |         /// The value that represents macOS 10.13.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:331:27: warning: static property 'v10_13' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
296 |
297 |     /// The supported macOS version.
298 |     public struct MacOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacOSVersion' conform to the 'Sendable' protocol
299 |         fileprivate static let name = "macOS"
300 |         fileprivate static let minimumMajorVersion = 10
    :
329 |         /// - Since: First available in PackageDescription 5.0.
330 |         @available(_PackageDescription, introduced: 5.0)
331 |         public static let v10_13: MacOSVersion = .init(string: "10.13")
    |                           |- warning: static property 'v10_13' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v10_13' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
332 |
333 |         /// The value that represents macOS 10.14.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:337:27: warning: static property 'v10_14' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
296 |
297 |     /// The supported macOS version.
298 |     public struct MacOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacOSVersion' conform to the 'Sendable' protocol
299 |         fileprivate static let name = "macOS"
300 |         fileprivate static let minimumMajorVersion = 10
    :
335 |         /// - Since: First available in PackageDescription 5.0.
336 |         @available(_PackageDescription, introduced: 5.0)
337 |         public static let v10_14: MacOSVersion = .init(string: "10.14")
    |                           |- warning: static property 'v10_14' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v10_14' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
338 |
339 |         /// The value that represents macOS 10.15.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:343:27: warning: static property 'v10_15' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
296 |
297 |     /// The supported macOS version.
298 |     public struct MacOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacOSVersion' conform to the 'Sendable' protocol
299 |         fileprivate static let name = "macOS"
300 |         fileprivate static let minimumMajorVersion = 10
    :
341 |         /// - Since: First available in PackageDescription 5.1.
342 |         @available(_PackageDescription, introduced: 5.1)
343 |         public static let v10_15: MacOSVersion = .init(string: "10.15")
    |                           |- warning: static property 'v10_15' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v10_15' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
344 |
345 |         /// The value that represents macOS 10.16, which has been
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:351:27: warning: static property 'v10_16' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
296 |
297 |     /// The supported macOS version.
298 |     public struct MacOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacOSVersion' conform to the 'Sendable' protocol
299 |         fileprivate static let name = "macOS"
300 |         fileprivate static let minimumMajorVersion = 10
    :
349 |         @available(*, unavailable, renamed: "v11")
350 |         @available(_PackageDescription, introduced: 5.3)
351 |         public static let v10_16: MacOSVersion = .init(string: "11.0")
    |                           |- warning: static property 'v10_16' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v10_16' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
352 |
353 |         /// The value that represents macOS 11.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:356:27: warning: static property 'v11' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
296 |
297 |     /// The supported macOS version.
298 |     public struct MacOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacOSVersion' conform to the 'Sendable' protocol
299 |         fileprivate static let name = "macOS"
300 |         fileprivate static let minimumMajorVersion = 10
    :
354 |         /// - Since: First available in PackageDescription 5.3.
355 |         @available(_PackageDescription, introduced: 5.3)
356 |         public static let v11: MacOSVersion = .init(string: "11.0")
    |                           |- warning: static property 'v11' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v11' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
357 |
358 |         /// The value that represents macOS 12.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:362:27: warning: static property 'v12' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
296 |
297 |     /// The supported macOS version.
298 |     public struct MacOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacOSVersion' conform to the 'Sendable' protocol
299 |         fileprivate static let name = "macOS"
300 |         fileprivate static let minimumMajorVersion = 10
    :
360 |         /// - Since: First available in PackageDescription 5.5.
361 |         @available(_PackageDescription, introduced: 5.5)
362 |         public static let v12: MacOSVersion = .init(string: "12.0")
    |                           |- warning: static property 'v12' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v12' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
363 |
364 |         /// The value that represents macOS 13.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:368:27: warning: static property 'v13' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
296 |
297 |     /// The supported macOS version.
298 |     public struct MacOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacOSVersion' conform to the 'Sendable' protocol
299 |         fileprivate static let name = "macOS"
300 |         fileprivate static let minimumMajorVersion = 10
    :
366 |         /// - Since: First available in PackageDescription 5.7.
367 |         @available(_PackageDescription, introduced: 5.7)
368 |         public static let v13: MacOSVersion = .init(string: "13.0")
    |                           |- warning: static property 'v13' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v13' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
369 |
370 |         /// The value that represents macOS 14.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:374:27: warning: static property 'v14' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
296 |
297 |     /// The supported macOS version.
298 |     public struct MacOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacOSVersion' conform to the 'Sendable' protocol
299 |         fileprivate static let name = "macOS"
300 |         fileprivate static let minimumMajorVersion = 10
    :
372 |         /// - Since: First available in PackageDescription 5.9.
373 |         @available(_PackageDescription, introduced: 5.9)
374 |         public static let v14: MacOSVersion = .init(string: "14.0")
    |                           |- warning: static property 'v14' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v14' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
375 |     }
376 |
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:393:27: warning: static property 'v9' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
376 |
377 |     /// The supported tvOS version.
378 |     public struct TVOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'TVOSVersion' conform to the 'Sendable' protocol
379 |         fileprivate static let name = "tvOS"
380 |         fileprivate static let minimumMajorVersion = 9
    :
391 |         /// - Since: First available in PackageDescription 5.0.
392 |         @available(_PackageDescription, introduced: 5.0, deprecated: 5.7, message: "tvOS 11.0 is the oldest supported version")
393 |         public static let v9: TVOSVersion = .init(string: "9.0")
    |                           |- warning: static property 'v9' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v9' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
394 |
395 |         /// The value that represents tvOS 10.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:399:27: warning: static property 'v10' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
376 |
377 |     /// The supported tvOS version.
378 |     public struct TVOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'TVOSVersion' conform to the 'Sendable' protocol
379 |         fileprivate static let name = "tvOS"
380 |         fileprivate static let minimumMajorVersion = 9
    :
397 |         /// - Since: First available in PackageDescription 5.0.
398 |         @available(_PackageDescription, introduced: 5.0, deprecated: 5.7, message: "tvOS 11.0 is the oldest supported version")
399 |         public static let v10: TVOSVersion = .init(string: "10.0")
    |                           |- warning: static property 'v10' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v10' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
400 |
401 |         /// The value that represents tvOS 11.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:405:27: warning: static property 'v11' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
376 |
377 |     /// The supported tvOS version.
378 |     public struct TVOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'TVOSVersion' conform to the 'Sendable' protocol
379 |         fileprivate static let name = "tvOS"
380 |         fileprivate static let minimumMajorVersion = 9
    :
403 |         /// - Since: First available in PackageDescription 5.0.
404 |         @available(_PackageDescription, introduced: 5.0)
405 |         public static let v11: TVOSVersion = .init(string: "11.0")
    |                           |- warning: static property 'v11' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v11' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
406 |
407 |         /// The value that represents tvOS 12.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:411:27: warning: static property 'v12' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
376 |
377 |     /// The supported tvOS version.
378 |     public struct TVOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'TVOSVersion' conform to the 'Sendable' protocol
379 |         fileprivate static let name = "tvOS"
380 |         fileprivate static let minimumMajorVersion = 9
    :
409 |         /// - Since: First available in PackageDescription 5.0.
410 |         @available(_PackageDescription, introduced: 5.0)
411 |         public static let v12: TVOSVersion = .init(string: "12.0")
    |                           |- warning: static property 'v12' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v12' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
412 |
413 |         /// The value that represents tvOS 13.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:417:27: warning: static property 'v13' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
376 |
377 |     /// The supported tvOS version.
378 |     public struct TVOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'TVOSVersion' conform to the 'Sendable' protocol
379 |         fileprivate static let name = "tvOS"
380 |         fileprivate static let minimumMajorVersion = 9
    :
415 |         /// - Since: First available in PackageDescription 5.1.
416 |         @available(_PackageDescription, introduced: 5.1)
417 |         public static let v13: TVOSVersion = .init(string: "13.0")
    |                           |- warning: static property 'v13' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v13' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
418 |
419 |         /// The value that represents tvOS 14.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:423:27: warning: static property 'v14' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
376 |
377 |     /// The supported tvOS version.
378 |     public struct TVOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'TVOSVersion' conform to the 'Sendable' protocol
379 |         fileprivate static let name = "tvOS"
380 |         fileprivate static let minimumMajorVersion = 9
    :
421 |         /// - Since: First available in PackageDescription 5.3.
422 |         @available(_PackageDescription, introduced: 5.3)
423 |         public static let v14: TVOSVersion = .init(string: "14.0")
    |                           |- warning: static property 'v14' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v14' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
424 |
425 |         /// The value that represents tvOS 15.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:429:27: warning: static property 'v15' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
376 |
377 |     /// The supported tvOS version.
378 |     public struct TVOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'TVOSVersion' conform to the 'Sendable' protocol
379 |         fileprivate static let name = "tvOS"
380 |         fileprivate static let minimumMajorVersion = 9
    :
427 |         /// - Since: First available in PackageDescription 5.5.
428 |         @available(_PackageDescription, introduced: 5.5)
429 |         public static let v15: TVOSVersion = .init(string: "15.0")
    |                           |- warning: static property 'v15' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v15' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
430 |
431 |         /// The value that represents tvOS 16.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:435:27: warning: static property 'v16' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
376 |
377 |     /// The supported tvOS version.
378 |     public struct TVOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'TVOSVersion' conform to the 'Sendable' protocol
379 |         fileprivate static let name = "tvOS"
380 |         fileprivate static let minimumMajorVersion = 9
    :
433 |         /// - Since: First available in PackageDescription 5.7.
434 |         @available(_PackageDescription, introduced: 5.7)
435 |         public static let v16: TVOSVersion = .init(string: "16.0")
    |                           |- warning: static property 'v16' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v16' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
436 |
437 |         /// The value that represents tvOS 17.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:441:27: warning: static property 'v17' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
376 |
377 |     /// The supported tvOS version.
378 |     public struct TVOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'TVOSVersion' conform to the 'Sendable' protocol
379 |         fileprivate static let name = "tvOS"
380 |         fileprivate static let minimumMajorVersion = 9
    :
439 |         /// - Since: First available in PackageDescription 5.9.
440 |         @available(_PackageDescription, introduced: 5.9)
441 |         public static let v17: TVOSVersion = .init(string: "17.0")
    |                           |- warning: static property 'v17' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.TVOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v17' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
442 |     }
443 |
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:460:27: warning: static property 'v13' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacCatalystVersion' may have shared mutable state; this is an error in the Swift 6 language mode
443 |
444 |     /// The supported Mac Catalyst version.
445 |     public struct MacCatalystVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacCatalystVersion' conform to the 'Sendable' protocol
446 |         fileprivate static let name = "macCatalyst"
447 |         fileprivate static let minimumMajorVersion = 13
    :
458 |         /// - Since: First available in PackageDescription 5.5.
459 |         @available(_PackageDescription, introduced: 5.5)
460 |         public static let v13: MacCatalystVersion = .init(string: "13.0")
    |                           |- warning: static property 'v13' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacCatalystVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v13' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
461 |
462 |         /// The value that represents Mac Catalyst 14.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:466:27: warning: static property 'v14' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacCatalystVersion' may have shared mutable state; this is an error in the Swift 6 language mode
443 |
444 |     /// The supported Mac Catalyst version.
445 |     public struct MacCatalystVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacCatalystVersion' conform to the 'Sendable' protocol
446 |         fileprivate static let name = "macCatalyst"
447 |         fileprivate static let minimumMajorVersion = 13
    :
464 |         /// - Since: First available in PackageDescription 5.5.
465 |         @available(_PackageDescription, introduced: 5.5)
466 |         public static let v14: MacCatalystVersion = .init(string: "14.0")
    |                           |- warning: static property 'v14' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacCatalystVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v14' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
467 |
468 |         /// The value that represents Mac Catalyst 15.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:472:27: warning: static property 'v15' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacCatalystVersion' may have shared mutable state; this is an error in the Swift 6 language mode
443 |
444 |     /// The supported Mac Catalyst version.
445 |     public struct MacCatalystVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacCatalystVersion' conform to the 'Sendable' protocol
446 |         fileprivate static let name = "macCatalyst"
447 |         fileprivate static let minimumMajorVersion = 13
    :
470 |         /// - Since: First available in PackageDescription 5.5.
471 |         @available(_PackageDescription, introduced: 5.5)
472 |         public static let v15: MacCatalystVersion = .init(string: "15.0")
    |                           |- warning: static property 'v15' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacCatalystVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v15' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
473 |
474 |         /// The value that represents Mac Catalyst 16.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:478:27: warning: static property 'v16' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacCatalystVersion' may have shared mutable state; this is an error in the Swift 6 language mode
443 |
444 |     /// The supported Mac Catalyst version.
445 |     public struct MacCatalystVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacCatalystVersion' conform to the 'Sendable' protocol
446 |         fileprivate static let name = "macCatalyst"
447 |         fileprivate static let minimumMajorVersion = 13
    :
476 |         /// - Since: First available in PackageDescription 5.7.
477 |         @available(_PackageDescription, introduced: 5.7)
478 |         public static let v16: MacCatalystVersion = .init(string: "16.0")
    |                           |- warning: static property 'v16' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacCatalystVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v16' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
479 |
480 |         /// The value that represents Mac Catalyst 17.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:484:27: warning: static property 'v17' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacCatalystVersion' may have shared mutable state; this is an error in the Swift 6 language mode
443 |
444 |     /// The supported Mac Catalyst version.
445 |     public struct MacCatalystVersion: AppleOSVersion {
    |                   `- note: consider making struct 'MacCatalystVersion' conform to the 'Sendable' protocol
446 |         fileprivate static let name = "macCatalyst"
447 |         fileprivate static let minimumMajorVersion = 13
    :
482 |         /// - Since: First available in PackageDescription 5.9.
483 |         @available(_PackageDescription, introduced: 5.9)
484 |         public static let v17: MacCatalystVersion = .init(string: "17.0")
    |                           |- warning: static property 'v17' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.MacCatalystVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v17' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
485 |     }
486 |
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:503:27: warning: static property 'v8' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
486 |
487 |     /// The supported iOS version.
488 |     public struct IOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'IOSVersion' conform to the 'Sendable' protocol
489 |         fileprivate static let name = "iOS"
490 |         fileprivate static let minimumMajorVersion = 2
    :
501 |         /// - Since: First available in PackageDescription 5.0.
502 |         @available(_PackageDescription, introduced: 5.0, deprecated: 5.7, message: "iOS 11.0 is the oldest supported version")
503 |         public static let v8: IOSVersion = .init(string: "8.0")
    |                           |- warning: static property 'v8' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v8' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
504 |
505 |         /// The value that represents iOS 9.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:509:27: warning: static property 'v9' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
486 |
487 |     /// The supported iOS version.
488 |     public struct IOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'IOSVersion' conform to the 'Sendable' protocol
489 |         fileprivate static let name = "iOS"
490 |         fileprivate static let minimumMajorVersion = 2
    :
507 |         /// - Since: First available in PackageDescription 5.0.
508 |         @available(_PackageDescription, introduced: 5.0, deprecated: 5.7, message: "iOS 11.0 is the oldest supported version")
509 |         public static let v9: IOSVersion = .init(string: "9.0")
    |                           |- warning: static property 'v9' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v9' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
510 |
511 |         /// The value that represents iOS 10.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:515:27: warning: static property 'v10' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
486 |
487 |     /// The supported iOS version.
488 |     public struct IOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'IOSVersion' conform to the 'Sendable' protocol
489 |         fileprivate static let name = "iOS"
490 |         fileprivate static let minimumMajorVersion = 2
    :
513 |         /// - Since: First available in PackageDescription 5.0.
514 |         @available(_PackageDescription, introduced: 5.0, deprecated: 5.7, message: "iOS 11.0 is the oldest supported version")
515 |         public static let v10: IOSVersion = .init(string: "10.0")
    |                           |- warning: static property 'v10' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v10' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
516 |
517 |         /// The value that represents iOS 11.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:521:27: warning: static property 'v11' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
486 |
487 |     /// The supported iOS version.
488 |     public struct IOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'IOSVersion' conform to the 'Sendable' protocol
489 |         fileprivate static let name = "iOS"
490 |         fileprivate static let minimumMajorVersion = 2
    :
519 |         /// - Since: First available in PackageDescription 5.0.
520 |         @available(_PackageDescription, introduced: 5.0)
521 |         public static let v11: IOSVersion = .init(string: "11.0")
    |                           |- warning: static property 'v11' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v11' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
522 |
523 |         /// The value that represents iOS 12.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:527:27: warning: static property 'v12' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
486 |
487 |     /// The supported iOS version.
488 |     public struct IOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'IOSVersion' conform to the 'Sendable' protocol
489 |         fileprivate static let name = "iOS"
490 |         fileprivate static let minimumMajorVersion = 2
    :
525 |         /// - Since: First available in PackageDescription 5.0.
526 |         @available(_PackageDescription, introduced: 5.0)
527 |         public static let v12: IOSVersion = .init(string: "12.0")
    |                           |- warning: static property 'v12' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v12' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
528 |
529 |         /// The value that represents iOS 13.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:533:27: warning: static property 'v13' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
486 |
487 |     /// The supported iOS version.
488 |     public struct IOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'IOSVersion' conform to the 'Sendable' protocol
489 |         fileprivate static let name = "iOS"
490 |         fileprivate static let minimumMajorVersion = 2
    :
531 |         /// - Since: First available in PackageDescription 5.1.
532 |         @available(_PackageDescription, introduced: 5.1)
533 |         public static let v13: IOSVersion = .init(string: "13.0")
    |                           |- warning: static property 'v13' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v13' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
534 |
535 |         /// The value that represents iOS 14.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:539:27: warning: static property 'v14' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
486 |
487 |     /// The supported iOS version.
488 |     public struct IOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'IOSVersion' conform to the 'Sendable' protocol
489 |         fileprivate static let name = "iOS"
490 |         fileprivate static let minimumMajorVersion = 2
    :
537 |         /// - Since: First available in PackageDescription 5.3.
538 |         @available(_PackageDescription, introduced: 5.3)
539 |         public static let v14: IOSVersion = .init(string: "14.0")
    |                           |- warning: static property 'v14' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v14' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
540 |
541 |         /// The value that represents iOS 15.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:545:27: warning: static property 'v15' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
486 |
487 |     /// The supported iOS version.
488 |     public struct IOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'IOSVersion' conform to the 'Sendable' protocol
489 |         fileprivate static let name = "iOS"
490 |         fileprivate static let minimumMajorVersion = 2
    :
543 |         /// - Since: First available in PackageDescription 5.5.
544 |         @available(_PackageDescription, introduced: 5.5)
545 |         public static let v15: IOSVersion = .init(string: "15.0")
    |                           |- warning: static property 'v15' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v15' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
546 |
547 |         /// The value that represents iOS 16.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:551:27: warning: static property 'v16' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
486 |
487 |     /// The supported iOS version.
488 |     public struct IOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'IOSVersion' conform to the 'Sendable' protocol
489 |         fileprivate static let name = "iOS"
490 |         fileprivate static let minimumMajorVersion = 2
    :
549 |         /// - Since: First available in PackageDescription 5.7.
550 |         @available(_PackageDescription, introduced: 5.7)
551 |         public static let v16: IOSVersion = .init(string: "16.0")
    |                           |- warning: static property 'v16' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v16' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
552 |
553 |         /// The value that represents iOS 17.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:557:27: warning: static property 'v17' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
486 |
487 |     /// The supported iOS version.
488 |     public struct IOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'IOSVersion' conform to the 'Sendable' protocol
489 |         fileprivate static let name = "iOS"
490 |         fileprivate static let minimumMajorVersion = 2
    :
555 |         /// - Since: First available in PackageDescription 5.9.
556 |         @available(_PackageDescription, introduced: 5.9)
557 |         public static let v17: IOSVersion = .init(string: "17.0")
    |                           |- warning: static property 'v17' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.IOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v17' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
558 |     }
559 |
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:576:27: warning: static property 'v2' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
559 |
560 |     /// The supported watchOS version.
561 |     public struct WatchOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'WatchOSVersion' conform to the 'Sendable' protocol
562 |         fileprivate static let name = "watchOS"
563 |         fileprivate static let minimumMajorVersion = 2
    :
574 |         /// - Since: First available in PackageDescription 5.0.
575 |         @available(_PackageDescription, introduced: 5.0, deprecated: 5.7, message: "watchOS 4.0 is the oldest supported version")
576 |         public static let v2: WatchOSVersion = .init(string: "2.0")
    |                           |- warning: static property 'v2' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v2' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
577 |
578 |         /// The value that represents watchOS 3.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:582:27: warning: static property 'v3' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
559 |
560 |     /// The supported watchOS version.
561 |     public struct WatchOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'WatchOSVersion' conform to the 'Sendable' protocol
562 |         fileprivate static let name = "watchOS"
563 |         fileprivate static let minimumMajorVersion = 2
    :
580 |         /// - Since: First available in PackageDescription 5.0.
581 |         @available(_PackageDescription, introduced: 5.0, deprecated: 5.7, message: "watchOS 4.0 is the oldest supported version")
582 |         public static let v3: WatchOSVersion = .init(string: "3.0")
    |                           |- warning: static property 'v3' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v3' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
583 |
584 |         /// The value that represents watchOS 4.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:588:27: warning: static property 'v4' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
559 |
560 |     /// The supported watchOS version.
561 |     public struct WatchOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'WatchOSVersion' conform to the 'Sendable' protocol
562 |         fileprivate static let name = "watchOS"
563 |         fileprivate static let minimumMajorVersion = 2
    :
586 |         /// - Since: First available in PackageDescription 5.0.
587 |         @available(_PackageDescription, introduced: 5.0)
588 |         public static let v4: WatchOSVersion = .init(string: "4.0")
    |                           |- warning: static property 'v4' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v4' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
589 |
590 |         /// The value that represents watchOS 5.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:594:27: warning: static property 'v5' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
559 |
560 |     /// The supported watchOS version.
561 |     public struct WatchOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'WatchOSVersion' conform to the 'Sendable' protocol
562 |         fileprivate static let name = "watchOS"
563 |         fileprivate static let minimumMajorVersion = 2
    :
592 |         /// - Since: First available in PackageDescription 5.0.
593 |         @available(_PackageDescription, introduced: 5.0)
594 |         public static let v5: WatchOSVersion = .init(string: "5.0")
    |                           |- warning: static property 'v5' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v5' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
595 |
596 |         /// The value that represents watchOS 6.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:600:27: warning: static property 'v6' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
559 |
560 |     /// The supported watchOS version.
561 |     public struct WatchOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'WatchOSVersion' conform to the 'Sendable' protocol
562 |         fileprivate static let name = "watchOS"
563 |         fileprivate static let minimumMajorVersion = 2
    :
598 |         /// - Since: First available in PackageDescription 5.1.
599 |         @available(_PackageDescription, introduced: 5.1)
600 |         public static let v6: WatchOSVersion = .init(string: "6.0")
    |                           |- warning: static property 'v6' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v6' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
601 |
602 |         /// The value that represents watchOS 7.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:606:27: warning: static property 'v7' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
559 |
560 |     /// The supported watchOS version.
561 |     public struct WatchOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'WatchOSVersion' conform to the 'Sendable' protocol
562 |         fileprivate static let name = "watchOS"
563 |         fileprivate static let minimumMajorVersion = 2
    :
604 |         /// - Since: First available in PackageDescription 5.3.
605 |         @available(_PackageDescription, introduced: 5.3)
606 |         public static let v7: WatchOSVersion = .init(string: "7.0")
    |                           |- warning: static property 'v7' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v7' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
607 |
608 |         /// The value that represents watchOS 8.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:612:27: warning: static property 'v8' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
559 |
560 |     /// The supported watchOS version.
561 |     public struct WatchOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'WatchOSVersion' conform to the 'Sendable' protocol
562 |         fileprivate static let name = "watchOS"
563 |         fileprivate static let minimumMajorVersion = 2
    :
610 |         /// - Since: First available in PackageDescription 5.5.
611 |         @available(_PackageDescription, introduced: 5.5)
612 |         public static let v8: WatchOSVersion = .init(string: "8.0")
    |                           |- warning: static property 'v8' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v8' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
613 |
614 |         /// The value that represents watchOS 9.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:618:27: warning: static property 'v9' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
559 |
560 |     /// The supported watchOS version.
561 |     public struct WatchOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'WatchOSVersion' conform to the 'Sendable' protocol
562 |         fileprivate static let name = "watchOS"
563 |         fileprivate static let minimumMajorVersion = 2
    :
616 |         /// - Since: First available in PackageDescription 5.7.
617 |         @available(_PackageDescription, introduced: 5.7)
618 |         public static let v9: WatchOSVersion = .init(string: "9.0")
    |                           |- warning: static property 'v9' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v9' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
619 |
620 |         /// The value that represents watchOS 10.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:624:27: warning: static property 'v10' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
559 |
560 |     /// The supported watchOS version.
561 |     public struct WatchOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'WatchOSVersion' conform to the 'Sendable' protocol
562 |         fileprivate static let name = "watchOS"
563 |         fileprivate static let minimumMajorVersion = 2
    :
622 |         /// - Since: First available in PackageDescription 5.9.
623 |         @available(_PackageDescription, introduced: 5.9)
624 |         public static let v10: WatchOSVersion = .init(string: "10.0")
    |                           |- warning: static property 'v10' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.WatchOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v10' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
625 |     }
626 |
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:643:27: warning: static property 'v1' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.VisionOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
626 |
627 |     /// The supported visionOS version.
628 |     public struct VisionOSVersion: AppleOSVersion {
    |                   `- note: consider making struct 'VisionOSVersion' conform to the 'Sendable' protocol
629 |         fileprivate static let name = "visionOS"
630 |         fileprivate static let minimumMajorVersion = 1
    :
641 |         /// - Since: First available in PackageDescription 5.9.
642 |         @available(_PackageDescription, introduced: 5.9)
643 |         public static let v1: VisionOSVersion = .init(string: "1.0")
    |                           |- warning: static property 'v1' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.VisionOSVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v1' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
644 |     }
645 |
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:662:27: warning: static property 'v19' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.DriverKitVersion' may have shared mutable state; this is an error in the Swift 6 language mode
645 |
646 |     /// The supported DriverKit version.
647 |     public struct DriverKitVersion: AppleOSVersion {
    |                   `- note: consider making struct 'DriverKitVersion' conform to the 'Sendable' protocol
648 |         fileprivate static let name = "DriverKit"
649 |         fileprivate static let minimumMajorVersion = 19
    :
660 |         /// - Since: First available in PackageDescription 5.5.
661 |         @available(_PackageDescription, introduced: 5.5)
662 |         public static let v19: DriverKitVersion = .init(string: "19.0")
    |                           |- warning: static property 'v19' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.DriverKitVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v19' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
663 |
664 |         /// The value that represents DriverKit 20.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:668:27: warning: static property 'v20' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.DriverKitVersion' may have shared mutable state; this is an error in the Swift 6 language mode
645 |
646 |     /// The supported DriverKit version.
647 |     public struct DriverKitVersion: AppleOSVersion {
    |                   `- note: consider making struct 'DriverKitVersion' conform to the 'Sendable' protocol
648 |         fileprivate static let name = "DriverKit"
649 |         fileprivate static let minimumMajorVersion = 19
    :
666 |         /// - Since: First available in PackageDescription 5.5.
667 |         @available(_PackageDescription, introduced: 5.5)
668 |         public static let v20: DriverKitVersion = .init(string: "20.0")
    |                           |- warning: static property 'v20' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.DriverKitVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v20' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
669 |
670 |         /// The value that represents DriverKit 21.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:674:27: warning: static property 'v21' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.DriverKitVersion' may have shared mutable state; this is an error in the Swift 6 language mode
645 |
646 |     /// The supported DriverKit version.
647 |     public struct DriverKitVersion: AppleOSVersion {
    |                   `- note: consider making struct 'DriverKitVersion' conform to the 'Sendable' protocol
648 |         fileprivate static let name = "DriverKit"
649 |         fileprivate static let minimumMajorVersion = 19
    :
672 |         /// - Since: First available in PackageDescription 5.5.
673 |         @available(_PackageDescription, introduced: 5.5)
674 |         public static let v21: DriverKitVersion = .init(string: "21.0")
    |                           |- warning: static property 'v21' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.DriverKitVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v21' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
675 |
676 |         /// The value that represents DriverKit 22.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:680:27: warning: static property 'v22' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.DriverKitVersion' may have shared mutable state; this is an error in the Swift 6 language mode
645 |
646 |     /// The supported DriverKit version.
647 |     public struct DriverKitVersion: AppleOSVersion {
    |                   `- note: consider making struct 'DriverKitVersion' conform to the 'Sendable' protocol
648 |         fileprivate static let name = "DriverKit"
649 |         fileprivate static let minimumMajorVersion = 19
    :
678 |         /// - Since: First available in PackageDescription 5.7.
679 |         @available(_PackageDescription, introduced: 5.7)
680 |         public static let v22: DriverKitVersion = .init(string: "22.0")
    |                           |- warning: static property 'v22' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.DriverKitVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v22' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
681 |
682 |         /// The value that represents DriverKit 23.0.
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:686:27: warning: static property 'v23' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.DriverKitVersion' may have shared mutable state; this is an error in the Swift 6 language mode
645 |
646 |     /// The supported DriverKit version.
647 |     public struct DriverKitVersion: AppleOSVersion {
    |                   `- note: consider making struct 'DriverKitVersion' conform to the 'Sendable' protocol
648 |         fileprivate static let name = "DriverKit"
649 |         fileprivate static let minimumMajorVersion = 19
    :
684 |         /// - Since: First available in PackageDescription 5.9.
685 |         @available(_PackageDescription, introduced: 5.9)
686 |         public static let v23: DriverKitVersion = .init(string: "23.0")
    |                           |- warning: static property 'v23' is not concurrency-safe because non-'Sendable' type 'SupportedPlatform.DriverKitVersion' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: annotate 'v23' with '@MainActor' if property should only be accessed from the main actor
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
687 |     }
688 |
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:692:20: warning: static property 'name' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
690 |     public struct CustomPlatformVersion: AppleOSVersion {
691 |         /// The name of the custom platform.
692 |         static var name: String = "custom platform"
    |                    |- warning: static property 'name' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'name' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'name' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
693 |         /// The minimum valid major version number.
694 |         static var minimumMajorVersion = 0
/Users/admin/builder/spi-builder-workspace/Sources/PackageDescription/SupportedPlatforms.swift:694:20: warning: static property 'minimumMajorVersion' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
692 |         static var name: String = "custom platform"
693 |         /// The minimum valid major version number.
694 |         static var minimumMajorVersion = 0
    |                    |- warning: static property 'minimumMajorVersion' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'minimumMajorVersion' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'minimumMajorVersion' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
695 |
696 |         fileprivate init(uncheckedVersion version: String) {
Fetching https://github.com/apple/swift-system.git
Fetching https://github.com/apple/swift-collections.git
Fetching https://github.com/art-divin/swift-driver.git
Fetching https://github.com/apple/swift-argument-parser.git
Fetching https://github.com/apple/swift-crypto.git
Fetching https://github.com/apple/swift-certificates.git
Fetching https://github.com/art-divin/swift-tools-support-core.git
[1/3638] Fetching swift-system
[38/7129] Fetching swift-system, swift-tools-support-core
[73/12350] Fetching swift-system, swift-tools-support-core, swift-certificates
[126/35382] Fetching swift-system, swift-tools-support-core, swift-certificates, swift-driver
[1392/44249] Fetching swift-system, swift-tools-support-core, swift-certificates, swift-driver, swift-crypto
[1538/59283] Fetching swift-system, swift-tools-support-core, swift-certificates, swift-driver, swift-crypto, swift-collections
[3077/71452] Fetching swift-system, swift-tools-support-core, swift-certificates, swift-driver, swift-crypto, swift-collections, swift-argument-parser
Fetched https://github.com/apple/swift-certificates.git from cache (1.60s)
[58182/66231] Fetching swift-system, swift-tools-support-core, swift-driver, swift-crypto, swift-collections, swift-argument-parser
Fetched https://github.com/art-divin/swift-tools-support-core.git from cache (1.60s)
[54780/62740] Fetching swift-system, swift-driver, swift-crypto, swift-collections, swift-argument-parser
Fetching https://github.com/art-divin/swift-llbuild.git
Fetched https://github.com/apple/swift-argument-parser.git from cache (1.65s)
[44257/50571] Fetching swift-system, swift-driver, swift-crypto, swift-collections
Fetched https://github.com/art-divin/swift-driver.git from cache (1.78s)
Fetched https://github.com/apple/swift-collections.git from cache (1.88s)
Fetched https://github.com/apple/swift-crypto.git from cache (1.88s)
Fetched https://github.com/apple/swift-system.git from cache (1.88s)
[1/17437] Fetching swift-llbuild
Fetched https://github.com/art-divin/swift-llbuild.git from cache (1.72s)
Computing version for https://github.com/apple/swift-certificates.git
Computed https://github.com/apple/swift-certificates.git at 1.0.1 (0.75s)
Fetching https://github.com/apple/swift-asn1.git
[1/1201] Fetching swift-asn1
Fetched https://github.com/apple/swift-asn1.git from cache (1.00s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.1.1 (0.69s)
Computing version for https://github.com/apple/swift-crypto.git
Computed https://github.com/apple/swift-crypto.git at 3.0.0 (0.69s)
Computing version for https://github.com/art-divin/swift-driver.git
Computed https://github.com/art-divin/swift-driver.git at 1.0.1 (0.72s)
Fetching https://github.com/jpsim/Yams.git
[1/9796] Fetching yams
Fetched https://github.com/jpsim/Yams.git from cache (1.83s)
Computing version for https://github.com/art-divin/swift-tools-support-core.git
Computed https://github.com/art-divin/swift-tools-support-core.git at 1.0.0 (0.75s)
Computing version for https://github.com/art-divin/swift-llbuild.git
Computed https://github.com/art-divin/swift-llbuild.git at 1.0.0 (0.75s)
Computing version for https://github.com/apple/swift-argument-parser.git
Computed https://github.com/apple/swift-argument-parser.git at 1.2.3 (0.73s)
Computing version for https://github.com/apple/swift-asn1.git
Computed https://github.com/apple/swift-asn1.git at 1.2.0 (0.67s)
Computing version for https://github.com/jpsim/Yams.git
Computed https://github.com/jpsim/Yams.git at 5.0.6 (0.65s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.1.3 (0.75s)
Creating working copy for https://github.com/apple/swift-asn1.git
Working copy of https://github.com/apple/swift-asn1.git resolved at 1.2.0
Creating working copy for https://github.com/art-divin/swift-llbuild.git
Working copy of https://github.com/art-divin/swift-llbuild.git resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.1.1
Creating working copy for https://github.com/apple/swift-certificates.git
Working copy of https://github.com/apple/swift-certificates.git resolved at 1.0.1
Creating working copy for https://github.com/jpsim/Yams.git
Working copy of https://github.com/jpsim/Yams.git resolved at 5.0.6
Creating working copy for https://github.com/art-divin/swift-driver.git
Working copy of https://github.com/art-divin/swift-driver.git resolved at 1.0.1
Creating working copy for https://github.com/apple/swift-argument-parser.git
Working copy of https://github.com/apple/swift-argument-parser.git resolved at 1.2.3
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.1.3
Creating working copy for https://github.com/apple/swift-crypto.git
Working copy of https://github.com/apple/swift-crypto.git resolved at 3.0.0
Creating working copy for https://github.com/art-divin/swift-tools-support-core.git
Working copy of https://github.com/art-divin/swift-tools-support-core.git resolved at 1.0.0
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/Sources/PackageModel/InstalledLibrariesSupport/provided-libraries.json
warning: failed to retrieve search paths with pkg-config; maybe pkg-config is not installed
warning: couldn't find pc file for sqlite3
BUILD FAILURE 6.0 macosSpm